Skip to content

Commit c7fc3cc

Browse files
mbwhitejt-nti
authored andcommitted
Release 2.4.1
Update release to 2.4.1 Minor addition to the version updates to suggest other files that might need changing. Signed-off-by: Matthew B White <[email protected]>
1 parent 8acc32a commit c7fc3cc

File tree

31 files changed

+88
-66
lines changed

31 files changed

+88
-66
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v2.4.1
2+
Mon Nov 29 10:39:51 GMT 2021
3+
4+
* [8acc32a](https://github.com/hyperledger/fabric-chaincode-node/commit/8acc32a) CI Pipeline Fixes (#304)
5+
16
## 2.4.0
27
Fri Nov 26 08:07:34 GMT 2021
38

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.4.0-beta",
32-
"fabric-shim": "^2.4.0-beta"
31+
"fabric-contract-api": "^2.4.1",
32+
"fabric-shim": "^2.4.1"
3333
}
3434
}
3535

apis/fabric-contract-api/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fabric-contract-api",
3-
"version": "2.4.0",
3+
"version": "2.4.1",
44
"tag": "release",
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",
@@ -46,7 +46,7 @@
4646
"lines": 100
4747
},
4848
"dependencies": {
49-
"fabric-shim-api": "2.4.0",
49+
"fabric-shim-api": "2.4.1",
5050
"class-transformer": "^0.4.0",
5151
"fast-safe-stringify": "^2.1.1",
5252
"get-params": "^0.1.2",

apis/fabric-shim-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fabric-shim-api",
3-
"version": "2.4.0",
3+
"version": "2.4.1",
44
"tag": "release",
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",

ci/azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ pool:
5252
#
5353
# Publish to NPM on release builds (they are the github tagged releases)
5454
# Publish to NPM on nightly builds when there is something to build
55-
# the ids will be of the format 2.4.0-beta.{commitid}
55+
# the ids will be of the format 2.4.1.{commitid}
5656
#
5757
stages:
5858

docker/fabric-nodeenv/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fabric-nodeenv",
3-
"version": "2.4.0",
3+
"version": "2.4.1",
44
"description": "",
55
"main": "docker.js",
66
"scripts": {
@@ -11,6 +11,6 @@
1111
"license": "Apache-2.0",
1212
"dependencies": {
1313
"git-rev-sync": "3.0.1",
14-
"toolchain": "2.4.0"
14+
"toolchain": "2.4.1"
1515
}
1616
}

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 main branch
11-
npm install [email protected].0-beta
11+
npm install [email protected].1
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.4.0-beta"
71+
"fabric-shim": "2.4.1"
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.4.0-beta",
32-
"fabric-shim": "^2.4.0-beta"
31+
"fabric-contract-api": "^2.4.1",
32+
"fabric-shim": "^2.4.1"
3333
}
3434
}
3535

docs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "fabric-shim-docs",
3-
"version": "2.4.0",
3+
"version": "2.4.1",
44
"description": "",
55
"private": true,
66
"scripts": {
77
"build": "npm run docs",
88
"docs": "rimraf ./gen && jsdoc -c ./_jsdoc.json"
99
},
1010
"dependencies": {
11-
"fabric-ledger": "2.4.0"
11+
"fabric-ledger": "2.4.1"
1212
},
1313
"devDependencies": {
1414
"ink-docstrap": "^1.3.2",

libraries/fabric-ledger/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fabric-ledger",
3-
"version": "2.4.0",
3+
"version": "2.4.1",
44
"tag": "unstable",
55
"description": "A node.js implementation of Hyperledger Fabric ledger api, to allow access to ledger data from smart contracts",
66
"main": "lib/index.js",
@@ -49,7 +49,7 @@
4949
"lines": 100
5050
},
5151
"dependencies": {
52-
"fabric-contract-api": "2.4.0",
52+
"fabric-contract-api": "2.4.1",
5353
"winston": "^3.3.3"
5454
},
5555
"devDependencies": {

0 commit comments

Comments
 (0)