Skip to content

Commit 8303972

Browse files
committed
Prepare 2.3.0 release
Signed-off-by: James Taylor <jamest@uk.ibm.com>
1 parent 081d5c8 commit 8303972

File tree

9 files changed

+35
-7
lines changed

9 files changed

+35
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v2.3.0
2+
Tue 3 Nov 2020 14:20:11 GMT
3+
4+
* [081d5c8](https://github.com/hyperledger/fabric-chaincode-java/commit/081d5c8) Bump version to 2.2.2
5+
* [b494824](https://github.com/hyperledger/fabric-chaincode-java/commit/b494824) [FABCJ-290](https://jira.hyperledger.org/browse/FABCJ-290) Add release guide
6+
17
## v2.2.1
28
Wed 7 Oct 2020 16:21:53 BST
39

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
apply plugin: 'idea'
88
apply plugin: 'eclipse-wtp'
9-
version = '2.2.2'
9+
version = '2.3.0'
1010
allprojects {
1111
repositories {
1212
mavenCentral()

examples/fabric-contract-example-gradle-kotlin/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ java {
1919

2020

2121
dependencies {
22-
implementation("org.hyperledger.fabric-chaincode-java:fabric-chaincode-shim:2.2.2")
22+
implementation("org.hyperledger.fabric-chaincode-java:fabric-chaincode-shim:2.3.0")
2323
implementation("org.json:json:20180813")
2424
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
2525

examples/fabric-contract-example-gradle/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ repositories {
2020
}
2121

2222
dependencies {
23-
compile group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '2.2.2'
23+
compile group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '2.3.0'
2424
compile group: 'org.json', name: 'json', version: '20180813'
2525
testImplementation 'org.junit.jupiter:junit-jupiter:5.4.2'
2626
testImplementation 'org.assertj:assertj-core:3.11.1'

examples/fabric-contract-example-maven/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1313

1414
<!-- fabric-chaincode-java -->
15-
<fabric-chaincode-java.version>2.2.2</fabric-chaincode-java.version>
15+
<fabric-chaincode-java.version>2.3.0</fabric-chaincode-java.version>
1616

1717
<!-- Logging -->
1818
<logback.version>1.0.13</logback.version>

fabric-chaincode-docker/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,6 @@ task copyAllDeps(type: Copy) {
7171
task buildImage(type: DockerBuildImage) {
7272
dependsOn copyAllDeps
7373
inputDir = project.file('Dockerfile').parentFile
74-
tags = ['hyperledger/fabric-javaenv', 'hyperledger/fabric-javaenv:amd64-2.2.2', 'hyperledger/fabric-javaenv:amd64-latest']
74+
tags = ['hyperledger/fabric-javaenv', 'hyperledger/fabric-javaenv:amd64-2.3.0', 'hyperledger/fabric-javaenv:amd64-latest']
7575
}
7676

fabric-chaincode-integration-test/src/contracts/fabric-chaincode-example-sacc/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ repositories {
1414
}
1515

1616
dependencies {
17-
compile group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '2.2.2'
17+
compile group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '2.3.0'
1818
testCompile group: 'junit', name: 'junit', version: '4.12'
1919
}
2020

fabric-chaincode-integration-test/src/contracts/fabric-chaincode-example-sbe/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ repositories {
1414
}
1515

1616
dependencies {
17-
compile group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '2.2.2'
17+
compile group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '2.3.0'
1818
testCompile group: 'junit', name: 'junit', version: '4.12'
1919
}
2020

release_notes/v2.3.0.txt

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
v2.3.0
2+
--------------------------
3+
4+
Release Notes
5+
-------------
6+
This v2.3.0 Release is the LTS version of the fabric-chaincode-java
7+
8+
Known Vulnerabilities
9+
---------------------
10+
none
11+
12+
Resolved Vulnerabilities
13+
------------------------
14+
none
15+
16+
Known Issues & Workarounds
17+
--------------------------
18+
none
19+
20+
Change Log
21+
----------
22+
https://github.com/hyperledger/fabric-chaincode-java/blob/release-2.x/CHANGELOG.md#v221

0 commit comments

Comments
 (0)