diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-08-03 22:28:00 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-08-03 22:28:00 +0800 |
commit | 477c3dc4f6a0db036b803f77347c0515d617ca61 (patch) | |
tree | 3f65cba3980f563ebf671e49ae4360d24140f189 | |
parent | 81f689e6933881702ed95798b45b7347de1dff77 (diff) | |
download | dexon-sol-tools-477c3dc4f6a0db036b803f77347c0515d617ca61.tar dexon-sol-tools-477c3dc4f6a0db036b803f77347c0515d617ca61.tar.gz dexon-sol-tools-477c3dc4f6a0db036b803f77347c0515d617ca61.tar.bz2 dexon-sol-tools-477c3dc4f6a0db036b803f77347c0515d617ca61.tar.lz dexon-sol-tools-477c3dc4f6a0db036b803f77347c0515d617ca61.tar.xz dexon-sol-tools-477c3dc4f6a0db036b803f77347c0515d617ca61.tar.zst dexon-sol-tools-477c3dc4f6a0db036b803f77347c0515d617ca61.zip |
Add PR numbers
-rw-r--r-- | packages/json-schemas/CHANGELOG.json | 3 | ||||
-rw-r--r-- | packages/sol-cov/CHANGELOG.json | 16 | ||||
-rw-r--r-- | packages/sol-cov/src/artifact_adapters/truffle_artifact_adapter.ts | 2 | ||||
-rw-r--r-- | packages/web3-wrapper/CHANGELOG.json | 6 |
4 files changed, 17 insertions, 10 deletions
diff --git a/packages/json-schemas/CHANGELOG.json b/packages/json-schemas/CHANGELOG.json index ab1bff76c..5ed7cc6ee 100644 --- a/packages/json-schemas/CHANGELOG.json +++ b/packages/json-schemas/CHANGELOG.json @@ -3,7 +3,8 @@ "version": "1.0.1-rc.4", "changes": [ { - "note": "Allow for additional properties in txData schema" + "note": "Allow for additional properties in txData schema", + "pr": 938 } ] }, diff --git a/packages/sol-cov/CHANGELOG.json b/packages/sol-cov/CHANGELOG.json index ddf81517e..1a0fe43ca 100644 --- a/packages/sol-cov/CHANGELOG.json +++ b/packages/sol-cov/CHANGELOG.json @@ -3,21 +3,25 @@ "version": "2.0.0", "changes": [ { - "note": "Fix a bug when eth_call coverage was not computed because of silent schema validation failures" + "note": + "Fix a bug when eth_call coverage was not computed because of silent schema validation failures", + "pr": 938 }, { - "note": "Make `TruffleArtifactAdapter` read the `truffle.js` config for `solc` settings" + "note": "Make `TruffleArtifactAdapter` read the `truffle.js` config for `solc` settings", + "pr": 938 }, { "note": - "Change the first param of `TruffleArtifactAdapter` to be the `projectRoot` instead of `sourcesDir`" + "Change the first param of `TruffleArtifactAdapter` to be the `projectRoot` instead of `sourcesDir`", + "pr": 938 }, { "note": - "Throw a helpful error message if truffle artifacts were generated with a different solc version than the one passed in" + "Throw a helpful error message if truffle artifacts were generated with a different solc version than the one passed in", + "pr": 938 } - ], - "timestamp": 1532619515 + ] }, { "version": "1.0.3", diff --git a/packages/sol-cov/src/artifact_adapters/truffle_artifact_adapter.ts b/packages/sol-cov/src/artifact_adapters/truffle_artifact_adapter.ts index c662b62b1..2706435cc 100644 --- a/packages/sol-cov/src/artifact_adapters/truffle_artifact_adapter.ts +++ b/packages/sol-cov/src/artifact_adapters/truffle_artifact_adapter.ts @@ -75,7 +75,7 @@ export class TruffleArtifactAdapter extends AbstractArtifactAdapter { throw new Error( `${artifact.contractName} was compiled with solidity ${compilerVersion} but specified version is ${ this._solcVersion - } it will make sol-cov unable to process traces. Please pass the correct version`, + } making it impossible for sol-cov to process traces`, ); } } diff --git a/packages/web3-wrapper/CHANGELOG.json b/packages/web3-wrapper/CHANGELOG.json index 2c43f99fb..9224d89b0 100644 --- a/packages/web3-wrapper/CHANGELOG.json +++ b/packages/web3-wrapper/CHANGELOG.json @@ -3,10 +3,12 @@ "version": "1.2.0", "changes": [ { - "note": "Export marshaller to convert between RPC and user-space data formats" + "note": "Export marshaller to convert between RPC and user-space data formats", + "pr": 938 }, { - "note": "Export RPC types" + "note": "Export RPC types", + "pr": 938 } ] }, |