Skip to content

Commit 99f931e

Browse files
authored
Merge pull request #197 from fraVlaca/main
bump version to 2.4.0-beta
2 parents 3aa3b31 + ec76ba8 commit 99f931e

File tree

12 files changed

+39
-12
lines changed

12 files changed

+39
-12
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v2.4.0-beta
2+
Fri 13 Aug 2021 16:43:31 CEST
3+
4+
* [292c4ebe](https://github.com/hyperledger/fabric-chaincode-java/commit/292c4ebe) Update the build.gradle for publishing
5+
16
## v2.3.1
27
Wed 21 Jul 2021 11:20:03 BST
38

build.gradle

+1-1
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.3.2'
9+
version = '2.4.0-beta'
1010

1111

1212
// If the nightly property is set, then this is the scheduled main

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

+1-1
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.3.2")
22+
implementation("org.hyperledger.fabric-chaincode-java:fabric-chaincode-shim:2.4.0-beta")
2323
implementation("org.json:json:20180813")
2424
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
2525

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

+1-1
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.3.2'
23+
compile group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '2.4.0-beta'
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

+1-1
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.3.2</fabric-chaincode-java.version>
15+
<fabric-chaincode-java.version>2.4.0-beta</fabric-chaincode-java.version>
1616

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

fabric-chaincode-docker/build.gradle

+1-1
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.3.2', 'hyperledger/fabric-javaenv:amd64-latest']
74+
tags = ['hyperledger/fabric-javaenv', 'hyperledger/fabric-javaenv:amd64-2.4.0', 'hyperledger/fabric-javaenv:amd64-latest']
7575
}
7676

fabric-chaincode-integration-test/src/contracts/bare-gradle/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ repositories {
1515
}
1616

1717
dependencies {
18-
implementation group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '2.3.2'
19-
implementation group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-protos', version: '2.3.2'
18+
implementation group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '2.4.0-beta'
19+
implementation group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-protos', version: '2.4.0-beta'
2020
testImplementation group: 'junit', name: 'junit', version: '4.12'
2121
implementation group: 'commons-logging', name: 'commons-logging', version: '1.2'
2222
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.6'

fabric-chaincode-integration-test/src/contracts/bare-maven/pom.xml

+1-1
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.3.2</fabric-chaincode-java.version>
15+
<fabric-chaincode-java.version>2.4.0-beta</fabric-chaincode-java.version>
1616

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

fabric-chaincode-integration-test/src/contracts/fabric-ledger-api/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ repositories {
1515
}
1616

1717
dependencies {
18-
implementation group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '2.3.2'
18+
implementation group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '2.4.0-beta'
1919
testImplementation group: 'junit', name: 'junit', version: '4.12'
2020
}
2121

fabric-chaincode-integration-test/src/contracts/fabric-shim-api/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ repositories {
1515
}
1616

1717
dependencies {
18-
implementation group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '2.3.2'
19-
implementation group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-protos', version: '2.3.2'
18+
implementation group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '2.4.0-beta'
19+
implementation group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-protos', version: '2.4.0-beta'
2020
testImplementation group: 'junit', name: 'junit', version: '4.12'
2121
implementation group: 'commons-logging', name: 'commons-logging', version: '1.2'
2222
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.6'

fabric-chaincode-integration-test/src/contracts/wrapper-maven/pom.xml

+1-1
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.3.2</fabric-chaincode-java.version>
15+
<fabric-chaincode-java.version>2.4.0-beta</fabric-chaincode-java.version>
1616

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

release_notes/v2.4.0-beta.txt

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
v2.4.0-beta
2+
--------------------------
3+
4+
Release Notes
5+
-------------
6+
This v2.4.0-beta Release is a bug fix release of the main branch.
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#v240

0 commit comments

Comments
 (0)