Skip to content

Commit 7d865af

Browse files
mbwhitedenyeart
authored andcommitted
Update to new version
Update to the .github workflows to handle the branch rename. Signed-off-by: Matthew B White <[email protected]>
1 parent 220ac53 commit 7d865af

File tree

24 files changed

+65
-63
lines changed

24 files changed

+65
-63
lines changed

.github/workflows/pull_request.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
pull_request:
88
branches:
99
- main
10-
- release-2.5
1110
workflow_dispatch:
1211

1312
concurrency:

.github/workflows/push.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
push:
88
branches:
99
- main
10-
- release-2.5
1110
workflow_dispatch:
1211

1312
jobs:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.5.3
2+
Tue Mar 7 09:36:52 GMT 2023
3+
4+
15
## v2.5.2
26
Wed Jan 25 14:21:32 GMT 2023
37

apis/fabric-contract-api/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fabric-contract-api",
3-
"version": "2.5.3-unstable",
3+
"version": "2.5.3",
44
"tag": "unstable",
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",
@@ -22,7 +22,7 @@
2222
"Fabric Shim"
2323
],
2424
"engines": {
25-
"node": "^18.0.0"
25+
"node": "^18.0.0"
2626
},
2727
"license": "Apache-2.0",
2828
"types": "./types/index.d.ts",
@@ -45,7 +45,7 @@
4545
"lines": 100
4646
},
4747
"dependencies": {
48-
"fabric-shim-api": "2.5.3-unstable",
48+
"fabric-shim-api": "2.5.3",
4949
"class-transformer": "^0.4.0",
5050
"fast-safe-stringify": "^2.1.1",
5151
"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.5.3-unstable",
3+
"version": "2.5.3",
44
"tag": "unstable",
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",

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.5.3-unstable",
3+
"version": "2.5.3",
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.5.3-unstable"
14+
"toolchain": "2.5.3"
1515
}
1616
}

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.5.3-unstable",
3+
"version": "2.5.3",
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.5.3-unstable"
11+
"fabric-ledger": "2.5.3"
1212
},
1313
"devDependencies": {
1414
"ink-docstrap": "^1.3.2",

libraries/fabric-ledger/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fabric-ledger",
3-
"version": "2.5.3-unstable",
3+
"version": "2.5.3",
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",
@@ -23,7 +23,7 @@
2323
"Fabric Ledger"
2424
],
2525
"engines": {
26-
"node": "^18.0.0"
26+
"node": "^18.0.0"
2727
},
2828
"license": "Apache-2.0",
2929
"nyc": {
@@ -48,7 +48,7 @@
4848
"lines": 100
4949
},
5050
"dependencies": {
51-
"fabric-contract-api": "2.5.3-unstable",
51+
"fabric-contract-api": "2.5.3",
5252
"winston": "^3.7.2"
5353
},
5454
"devDependencies": {

libraries/fabric-shim/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fabric-shim",
3-
"version": "2.5.3-unstable",
3+
"version": "2.5.3",
44
"tag": "unstable",
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",
@@ -29,7 +29,7 @@
2929
"Fabric Shim"
3030
],
3131
"engines": {
32-
"node": "^18.0.0"
32+
"node": "^18.0.0"
3333
},
3434
"types": "./types/index.d.ts",
3535
"license": "Apache-2.0",
@@ -59,8 +59,8 @@
5959
"@hyperledger/fabric-protos": "0.1.0-dev.2300102001.1",
6060
"@types/node": "^16.11.1",
6161
"ajv": "^6.12.2",
62-
"fabric-contract-api": "2.5.3-unstable",
63-
"fabric-shim-api": "2.5.3-unstable",
62+
"fabric-contract-api": "2.5.3",
63+
"fabric-shim-api": "2.5.3",
6464
"fast-safe-stringify": "^2.1.1",
6565
"fs-extra": "^10.0.1",
6666
"reflect-metadata": "^0.1.13",

test/chaincodes/annotations/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
"typings": "dist/index.d.ts",
1414
"engine-strict": true,
1515
"engineStrict": true,
16-
"version": "2.5.3-unstable",
16+
"version": "2.5.3",
1717
"author": "",
1818
"license": "APACHE-2.0",
1919
"dependencies": {
2020
"@types/node": "^16.11.4",
21-
"fabric-contract-api": "2.5.3-unstable",
22-
"fabric-shim": "2.5.3-unstable",
21+
"fabric-contract-api": "2.5.3",
22+
"fabric-shim": "2.5.3",
2323
"ts-node": "^3.3.0",
2424
"tslint": "^5.6.0",
2525
"typescript": "^4.0.2"

0 commit comments

Comments
 (0)