Skip to content

Commit 92c3225

Browse files
authored
[FABCN-421] release: 2.2.0 LTS release (#181)
Signed-off-by: Matthew B White <[email protected]>
1 parent 9f30e90 commit 92c3225

File tree

23 files changed

+68
-47
lines changed

23 files changed

+68
-47
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## v2.2.0
2+
Thu 2 Jul 11:40:02 BST 2020
3+
4+
* [0f1b616](https://github.com/hyperledger/fabric-chaincode-node/commit/0f1b616) [FABCN-421](https://jira.hyperledger.org/browse/FABCN-421) release: 2.2.0 LTS release
5+
* [9f30e90](https://github.com/hyperledger/fabric-chaincode-node/commit/9f30e90) Use Official CouchDB 3.1 Image (#180)
6+
* [eeca625](https://github.com/hyperledger/fabric-chaincode-node/commit/eeca625) [FABCN-420](https://jira.hyperledger.org/browse/FABCN-420) Remove Azure pipeline warnings (#177)
7+
* [cc7fee7](https://github.com/hyperledger/fabric-chaincode-node/commit/cc7fee7) [FABCN-319](https://jira.hyperledger.org/browse/FABCN-319) Update dependnency versions (#176)
8+
* [8966eed](https://github.com/hyperledger/fabric-chaincode-node/commit/8966eed) [FABCN-393](https://jira.hyperledger.org/browse/FABCN-393) Fix broken links in documents (#169)
9+
110
## v2.1.4
211
Mon 22 Jun 2020 14:51:02 BST
312

TUTORIAL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ The dependencies of `fabric-contract-api` and `fabric-shim` will be required.
2828
"author": "",
2929
"license": "Apache-2.0",
3030
"dependencies": {
31-
"fabric-contract-api": "^2.1.5-unstable",
32-
"fabric-shim": "^2.1.5-unstable"
31+
"fabric-contract-api": "^2.2.0",
32+
"fabric-shim": "^2.2.0"
3333
}
3434
}
3535

apis/fabric-contract-api/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "fabric-contract-api",
3-
"version": "2.1.5-unstable",
4-
"tag": "unstable",
3+
"version": "2.2.0",
4+
"tag": "latest",
55
"description": "A node.js implementation of Hyperledger Fabric chaincode shim, to allow endorsing peers and user-provided chaincodes to communicate with each other",
66
"main": "index.js",
77
"repository": {
@@ -46,7 +46,7 @@
4646
"lines": 100
4747
},
4848
"dependencies": {
49-
"fabric-shim-api": "2.1.5-unstable",
49+
"fabric-shim-api": "2.2.0",
5050
"class-transformer": "^0.2.2",
5151
"fast-safe-stringify": "^2.0.7",
5252
"get-params": "^0.1.2",

apis/fabric-shim-api/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "fabric-shim-api",
3-
"version": "2.1.5-unstable",
4-
"tag": "unstable",
3+
"version": "2.2.0",
4+
"tag": "latest",
55
"description": "A node.js API of Hyperledger Fabric chaincode shim, to allow endorsing peers and user-provided chaincodes to communicate with each other",
66
"main": "index.js",
77
"repository": {

ci/azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ stages:
291291
workingFile: '$(Agent.TempDirectory)/.npmrc'
292292
customEndpoint: 'fabric-chainode-node-npm'
293293
- script: |
294-
find $(Pipeline.Workspace)/node-tgz/ -maxdepth 1 -type f -name 'fabric-*.tgz' -exec npm publish {} --tag unstable \;
294+
find $(Pipeline.Workspace)/node-tgz/ -maxdepth 1 -type f -name 'fabric-*.tgz' -exec npm publish {} --tag latest \;
295295
displayName: 'npm publish'
296296
- job: dockerhub_publish
297297
steps:

docs/_jsdoc/tutorials/using-chaincodeinterface.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ cd mycc
88
// create a new node project
99
npm init
1010
// install fabric-shim at master branch
11-
npm install fabric-shim@2.1.5-unstable
11+
npm install fabric-shim@2.2.0
1212
// or using the released version
1313
npm install fabric-shim
1414
touch mychaincode.js
@@ -68,7 +68,7 @@ Finally, update the "start" script in package.json to "node mychaincode.js":
6868
"engineStrict": true,
6969
"license": "Apache-2.0",
7070
"dependencies": {
71-
"fabric-shim": "2.1.5-unstable"
71+
"fabric-shim": "2.2.0"
7272
}
7373
}
7474
```

docs/_jsdoc/tutorials/using-contractinterface.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ The dependencies of `fabric-contract-api` and `fabric-shim` will be required.
2828
"author": "",
2929
"license": "Apache-2.0",
3030
"dependencies": {
31-
"fabric-contract-api": "^2.1.5-unstable",
32-
"fabric-shim": "^2.1.5-unstable"
31+
"fabric-contract-api": "^2.2.0",
32+
"fabric-shim": "^2.2.0"
3333
}
3434
}
3535

libraries/fabric-shim-crypto/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "fabric-shim-crypto",
3-
"version": "2.1.5-unstable",
4-
"tag": "unstable",
3+
"version": "2.2.0",
4+
"tag": "latest",
55
"description": "A node.js implementation of encryption library for Hyperledger Fabric chaincode shim",
66
"main": "index.js",
77
"repository": {

libraries/fabric-shim/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "fabric-shim",
3-
"version": "2.1.5-unstable",
4-
"tag": "unstable",
3+
"version": "2.2.0",
4+
"tag": "latest",
55
"description": "A node.js implementation of Hyperledger Fabric chaincode shim, to allow endorsing peers and user-provided chaincodes to communicate with each other",
66
"main": "index.js",
77
"bin": {
@@ -59,8 +59,8 @@
5959
"@grpc/proto-loader": "^0.5.4",
6060
"@types/node": "^14.0.13",
6161
"ajv": "^6.12.2",
62-
"fabric-contract-api": "2.1.5-unstable",
63-
"fabric-shim-api": "2.1.5-unstable",
62+
"fabric-contract-api": "2.2.0",
63+
"fabric-shim-api": "2.2.0",
6464
"fs-extra": "^9.0.1",
6565
"reflect-metadata": "^0.1.13",
6666
"winston": "^3.3.2",

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "fabric-chaincode-node",
3-
"version": "2.1.5-unstable",
4-
"tag": "unstable",
3+
"version": "2.2.0",
4+
"tag": "latest",
55
"description": "fabric-chaincode-node monorepo, built with rush",
66
"testFabricVersion": "master",
77
"testFabricCAVersion": "1.4.4",

0 commit comments

Comments
 (0)