Skip to content

Commit

Permalink
Merge pull request #195 from kemi04/release-2.2
Browse files Browse the repository at this point in the history
release-2.2.3
  • Loading branch information
mbwhite authored Jul 23, 2021
2 parents 1ff91ea + 37e5c41 commit 01d1493
Show file tree
Hide file tree
Showing 12 changed files with 41 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## v2.2.3
Fri 23 Jul 2021 10:18:58 BST

* [1f6423e3](https://github.com/hyperledger/fabric-chaincode-java/commit/1f6423e3) Integration tests extended
* [4ae67524](https://github.com/hyperledger/fabric-chaincode-java/commit/4ae67524) Tweak coverage limits
* [52e78b55](https://github.com/hyperledger/fabric-chaincode-java/commit/52e78b55) NettyGrpcServer -- support mutual TLS

## v2.2.2
Mon 7 Jun 2021 11:35:03 BST

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

apply plugin: 'idea'
apply plugin: 'eclipse-wtp'
version = '2.2.2'
version = '2.2.3'
allprojects {
repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion examples/fabric-contract-example-external/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repositories {
}

dependencies {
compile group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '2.2.+'
compile group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '2.2.3'
compile group: 'org.json', name: 'json', version: '20180813'
testImplementation 'org.junit.jupiter:junit-jupiter:5.4.2'
testImplementation 'org.assertj:assertj-core:3.11.1'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ java {


dependencies {
implementation("org.hyperledger.fabric-chaincode-java:fabric-chaincode-shim:2.2.2")
implementation("org.hyperledger.fabric-chaincode-java:fabric-chaincode-shim:2.2.3")
implementation("org.json:json:20180813")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")

Expand Down
2 changes: 1 addition & 1 deletion examples/fabric-contract-example-gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repositories {
}

dependencies {
compile group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '2.2.2'
compile group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '2.2.3'
compile group: 'org.json', name: 'json', version: '20180813'
testImplementation 'org.junit.jupiter:junit-jupiter:5.4.2'
testImplementation 'org.assertj:assertj-core:3.11.1'
Expand Down
2 changes: 1 addition & 1 deletion examples/fabric-contract-example-maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<!-- fabric-chaincode-java -->
<fabric-chaincode-java.version>2.2.2</fabric-chaincode-java.version>
<fabric-chaincode-java.version>2.2.3</fabric-chaincode-java.version>

<!-- Logging -->
<logback.version>1.0.13</logback.version>
Expand Down
2 changes: 1 addition & 1 deletion fabric-chaincode-docker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@ task copyAllDeps(type: Copy) {
task buildImage(type: DockerBuildImage) {
dependsOn copyAllDeps
inputDir = project.file('Dockerfile').parentFile
tags = ['hyperledger/fabric-javaenv', 'hyperledger/fabric-javaenv:amd64-2.2.2', 'hyperledger/fabric-javaenv:amd64-latest']
tags = ['hyperledger/fabric-javaenv', 'hyperledger/fabric-javaenv:amd64-2.2.3', 'hyperledger/fabric-javaenv:amd64-latest']
}

Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ repositories {
}

dependencies {
implementation group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '2.2.2'
implementation group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-protos', version: '2.2.2'
implementation group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '2.2.3'
implementation group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-protos', version: '2.2.3'
testImplementation group: 'junit', name: 'junit', version: '4.12'
implementation group: 'commons-logging', name: 'commons-logging', version: '1.2'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<!-- fabric-chaincode-java -->
<fabric-chaincode-java.version>2.2.2</fabric-chaincode-java.version>
<fabric-chaincode-java.version>2.2.3</fabric-chaincode-java.version>

<!-- Logging -->
<logback.version>1.0.13</logback.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ repositories {
}

dependencies {
implementation group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '2.2.2'
implementation group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-protos', version: '2.2.2'
implementation group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '2.2.3'
implementation group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-protos', version: '2.2.3'
testImplementation group: 'junit', name: 'junit', version: '4.12'
implementation group: 'commons-logging', name: 'commons-logging', version: '1.2'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<!-- fabric-chaincode-java -->
<fabric-chaincode-java.version>2.2.2</fabric-chaincode-java.version>
<fabric-chaincode-java.version>2.2.3</fabric-chaincode-java.version>

<!-- Logging -->
<logback.version>1.0.13</logback.version>
Expand Down
22 changes: 22 additions & 0 deletions release_notes/v2.2.3.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
v2.2.3
--------------------------

Release Notes
-------------
This v2.2.3 Release is a bug fix release of the release-2.2 branch

Known Vulnerabilities
---------------------
none

Resolved Vulnerabilities
------------------------
none

Known Issues & Workarounds
--------------------------
none

Change Log
----------
https://github.com/hyperledger/fabric-chaincode-java/blob/release-2.x/CHANGELOG.md#v222

0 comments on commit 01d1493

Please sign in to comment.