diff options
-rw-r--r-- | packages/sol-compiler/CHANGELOG.json | 10 | ||||
-rw-r--r-- | packages/sol-compiler/src/compiler.ts | 1 |
2 files changed, 10 insertions, 1 deletions
diff --git a/packages/sol-compiler/CHANGELOG.json b/packages/sol-compiler/CHANGELOG.json index 33fd99e4f..db24ad78b 100644 --- a/packages/sol-compiler/CHANGELOG.json +++ b/packages/sol-compiler/CHANGELOG.json @@ -1,5 +1,15 @@ [ { + "version": "0.5.1", + "changes": [ + { + "note": "Add schema validation for compiler configuration", + "pr": 621 + } + ], + "timestamp": 1527009133 + }, + { "version": "0.5.0", "changes": [ { diff --git a/packages/sol-compiler/src/compiler.ts b/packages/sol-compiler/src/compiler.ts index d063b27a1..2cd8311d1 100644 --- a/packages/sol-compiler/src/compiler.ts +++ b/packages/sol-compiler/src/compiler.ts @@ -1,5 +1,4 @@ import { assert } from '@0xproject/assert'; -import { schemas } from '@0xproject/json-schemas'; import { ContractSource, ContractSources, |