Skip to content

Commit

Permalink
[Release 0.3.1] Bump package versions and update change log
Browse files Browse the repository at this point in the history
Signed-off-by: Attila Klenik <[email protected]>
  • Loading branch information
aklenik committed May 11, 2020
1 parent cd3ae29 commit 1873f28
Show file tree
Hide file tree
Showing 16 changed files with 373 additions and 349 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
## 0.3.1 (May 11, 2020)

* Core changes
* Relax constraints for monitor/observer combinations ([PR#761](https://github.com/hyperledger/caliper/pull/761))
* Call the `end` function of workload modules sooner, so they can still access the adapter context ([PR#779](https://github.com/hyperledger/caliper/pull/779))
* Improved error reporting in the worker processes ([PR#782](https://github.com/hyperledger/caliper/pull/782))
* Improve TX handling/waiting approach for worker processes, thus enabling long-term benchmarks ([PR#794](https://github.com/hyperledger/caliper/pull/794))
* Improve core package management for the Docker image ([PR#795](https://github.com/hyperledger/caliper/pull/795))
* Improve handling of benchmark errors upon monitoring data reporing ([PR#797](https://github.com/hyperledger/caliper/pull/797))

* Hyperledger Fabric adapter changes
* Fix orderer name check for Fabric v2 adapter ([PR#762](https://github.com/hyperledger/caliper/pull/762))
* Add support for stable Fabric v2 SDK packages

* Ethereum/Hyperledger Besu adapter changes
* Improve connection/TX management to SUT ([PR#780](https://github.com/hyperledger/caliper/pull/780))
* Update HL Besu versions ([PR#786](https://github.com/hyperledger/caliper/pull/786))
* Make `contractDeployerAddress` available in the adapter context ([PR#808](https://github.com/hyperledger/caliper/pull/808))

* Hyperledger Sawtooth adapter changes
* Refactored adapter to be more OO-like, and fixed non-existing variable reference bug ([PR#782](https://github.com/hyperledger/caliper/pull/782))

* Hyperledger Burrow adapter changes
* Switch SDK package to `@hyperledger/burrow` ([PR#804](https://github.com/hyperledger/caliper/pull/804))

## 0.3.0 (March 4, 2020)

* Core changes
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
"packages/caliper-gui-server",
"packages/caliper-generator/generator-caliper"
],
"version": "0.3.1-unstable",
"version": "0.3.1",
"hoist": true
}
134 changes: 67 additions & 67 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,69 +1,69 @@
{
"name": "caliper",
"description": "Performance benchmarking for Hyperledger blockchain technologies. You must install [Lerna](https://lernajs.io) to build this multi-package repository.",
"version": "0.3.1-unstable",
"repository": {
"type": "git",
"url": "https://github.com/hyperledger/caliper"
},
"scripts": {
"repoclean": "lerna clean",
"bootstrap": "lerna bootstrap",
"pretest": "npm run licchk",
"licchk": "license-check-and-add",
"test": "lerna run test"
},
"engines": {
"node": ">=8.10.0",
"npm": ">=5.6.0"
},
"dependencies": {},
"devDependencies": {
"lerna": "^3.18.3",
"license-check-and-add": "2.3.6",
"repolinter": "0.8.2"
},
"license-check-and-add-config": {
"folder": ".",
"license": "LICENSE.txt",
"exact_paths_method": "EXCLUDE",
"exact_paths": [
"CODEOWNERS",
"LICENSE",
".idea",
"node_modules",
".nyc_output",
"coverage",
"scripts",
".git",
".gitignore",
"packages",
"log"
],
"file_type_method": "EXCLUDE",
"file_types": [
".yml",
".md",
".log",
".html"
],
"insert_license": false,
"license_formats": {
"js|cto|qry|go": {
"prepend": "/*",
"append": "*/",
"eachLine": {
"prepend": "* "
"name": "caliper",
"description": "Performance benchmarking for Hyperledger blockchain technologies. You must install [Lerna](https://lernajs.io) to build this multi-package repository.",
"version": "0.3.1",
"repository": {
"type": "git",
"url": "https://github.com/hyperledger/caliper"
},
"scripts": {
"repoclean": "lerna clean",
"bootstrap": "lerna bootstrap",
"pretest": "npm run licchk",
"licchk": "license-check-and-add",
"test": "lerna run test"
},
"engines": {
"node": ">=8.10.0",
"npm": ">=5.6.0"
},
"dependencies": {},
"devDependencies": {
"lerna": "^3.18.3",
"license-check-and-add": "2.3.6",
"repolinter": "0.8.2"
},
"license-check-and-add-config": {
"folder": ".",
"license": "LICENSE.txt",
"exact_paths_method": "EXCLUDE",
"exact_paths": [
"CODEOWNERS",
"LICENSE",
".idea",
"node_modules",
".nyc_output",
"coverage",
"scripts",
".git",
".gitignore",
"packages",
"log"
],
"file_type_method": "EXCLUDE",
"file_types": [
".yml",
".md",
".log",
".html"
],
"insert_license": false,
"license_formats": {
"js|cto|qry|go": {
"prepend": "/*",
"append": "*/",
"eachLine": {
"prepend": "* "
}
},
"cfg|editorconfig|yaml|py": {
"prepend": "#",
"append": "#",
"eachLine": {
"prepend": "# "
}
}
}
},
"cfg|editorconfig|yaml|py": {
"prepend": "#",
"append": "#",
"eachLine": {
"prepend": "# "
}
}
}
},
"license": "Apache-2.0"
}
},
"license": "Apache-2.0"
}
6 changes: 3 additions & 3 deletions packages/caliper-burrow/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hyperledger/caliper-burrow",
"description": "Hyperledger Burrow adaptor for Caliper, enabling the running of performance benchmarks that interact with Burrow",
"version": "0.3.1-unstable",
"version": "0.3.1",
"repository": {
"type": "git",
"url": "https://github.com/hyperledger/caliper",
Expand All @@ -22,7 +22,7 @@
"npm": ">=5.6.0"
},
"dependencies": {
"@hyperledger/caliper-core": "0.3.1-unstable",
"@hyperledger/caliper-core": "0.3.1",
"google-protobuf": "^3.11.4"
},
"devDependencies": {
Expand Down Expand Up @@ -87,4 +87,4 @@
"lines": 5
},
"license": "Apache-2.0"
}
}
18 changes: 9 additions & 9 deletions packages/caliper-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hyperledger/caliper-cli",
"description": "Hyperledger Caliper CLI, for convenience running of a performance benchmark to test blockchain technologies",
"version": "0.3.1-unstable",
"version": "0.3.1",
"repository": {
"type": "git",
"url": "https://github.com/hyperledger/caliper",
Expand All @@ -26,13 +26,13 @@
"npm": ">=5.6.0"
},
"dependencies": {
"@hyperledger/caliper-core": "0.3.1-unstable",
"@hyperledger/caliper-burrow": "0.3.1-unstable",
"@hyperledger/caliper-fabric": "0.3.1-unstable",
"@hyperledger/caliper-iroha": "0.3.1-unstable",
"@hyperledger/caliper-sawtooth": "0.3.1-unstable",
"@hyperledger/caliper-ethereum": "0.3.1-unstable",
"@hyperledger/caliper-fisco-bcos": "0.3.1-unstable",
"@hyperledger/caliper-core": "0.3.1",
"@hyperledger/caliper-burrow": "0.3.1",
"@hyperledger/caliper-fabric": "0.3.1",
"@hyperledger/caliper-iroha": "0.3.1",
"@hyperledger/caliper-sawtooth": "0.3.1",
"@hyperledger/caliper-ethereum": "0.3.1",
"@hyperledger/caliper-fisco-bcos": "0.3.1",
"yargs": "15.3.1"
},
"devDependencies": {
Expand Down Expand Up @@ -95,4 +95,4 @@
"lines": 5
},
"license": "Apache-2.0"
}
}
4 changes: 2 additions & 2 deletions packages/caliper-core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hyperledger/caliper-core",
"description": "Core Hyperledger Caliper module, used for running performance benchmarks that interact with blockchain technologies",
"version": "0.3.1-unstable",
"version": "0.3.1",
"repository": {
"type": "git",
"url": "https://github.com/hyperledger/caliper",
Expand Down Expand Up @@ -108,4 +108,4 @@
"lines": 1
},
"license": "Apache-2.0"
}
}
6 changes: 3 additions & 3 deletions packages/caliper-ethereum/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hyperledger/caliper-ethereum",
"description": "Ethereum adaptor for Caliper, enabling the running of performance benchmarks that interact with Ethereum",
"version": "0.3.1-unstable",
"version": "0.3.1",
"repository": {
"type": "git",
"url": "https://github.com/hyperledger/caliper",
Expand All @@ -22,7 +22,7 @@
"npm": ">=5.6.0"
},
"dependencies": {
"@hyperledger/caliper-core": "0.3.1-unstable",
"@hyperledger/caliper-core": "0.3.1",
"ethereumjs-wallet": "^0.6.3"
},
"devDependencies": {
Expand Down Expand Up @@ -86,4 +86,4 @@
"lines": 5
},
"license": "Apache-2.0"
}
}
8 changes: 4 additions & 4 deletions packages/caliper-fabric/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hyperledger/caliper-fabric",
"description": "Hyperledger Fabric adaptor for Caliper, enabling the running of performance benchmarks that interact with Fabric",
"version": "0.3.1-unstable",
"version": "0.3.1",
"repository": {
"type": "git",
"url": "https://github.com/hyperledger/caliper",
Expand All @@ -23,8 +23,8 @@
},
"dependencies": {
"@hapi/joi": "^15.1.1",
"@hyperledger/caliper-core": "0.3.1-unstable",
"semver":"7.1.1"
"@hyperledger/caliper-core": "0.3.1",
"semver": "7.1.1"
},
"devDependencies": {
"fabric-ca-client": "^1.4.7",
Expand Down Expand Up @@ -90,4 +90,4 @@
"lines": 1
},
"license": "Apache-2.0"
}
}
6 changes: 3 additions & 3 deletions packages/caliper-fisco-bcos/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperledger/caliper-fisco-bcos",
"version": "0.3.1-unstable",
"version": "0.3.1",
"description": "FISCO BCOS adaptor for Caliper, enabling the running of a performance benchmarks that interact with FISCO BCOS",
"repository": {
"type": "git",
Expand All @@ -22,7 +22,7 @@
"npm": ">=5.6.0"
},
"dependencies": {
"@hyperledger/caliper-core": "0.3.1-unstable",
"@hyperledger/caliper-core": "0.3.1",
"nconf": "^0.10.0",
"isarray": "^2.0.4",
"fs-extra": "8.1.0",
Expand Down Expand Up @@ -89,4 +89,4 @@
"lines": 5
},
"license": "Apache-2.0"
}
}
Loading

0 comments on commit 1873f28

Please sign in to comment.