Skip to content

Commit 63ca9c5

Browse files
committed
release/4.11.3-hotfix
Signed-off-by: Nischal Sharma <[email protected]>
1 parent 32840d3 commit 63ca9c5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ description = 'Gradle plugin providing tasks to generate Web3j contracts from So
1313
sourceCompatibility = 17
1414

1515
ext {
16-
web3jVersion = version
16+
web3jVersion = version.replaceAll(/-hotfix$/, '')
1717
}
1818

1919
apply {

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
group=org.web3j
2-
version=4.11.3
2+
version=4.11.3-hotfix
33
org.gradle.caching=true
44
org.gradle.parallel=true
5-
solidityPluginVersion=0.4.0
5+
solidityPluginVersion=0.4.1
66
kotlinVersion=1.8.10
77
junitVersion=4.12

src/main/java/org/web3j/gradle/plugin/Web3jPlugin.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ protected String getProjectVersion() {
7070
final Properties versionProps = new Properties();
7171
try (InputStream inStream = versionPropsFile.openStream()) {
7272
versionProps.load(inStream);
73-
return versionProps.getProperty("version");
73+
return versionProps.getProperty("version").replaceAll("-hotfix$", "");
7474
}
7575
} catch (IOException e) {
7676
throw new PluginApplicationException(

0 commit comments

Comments
 (0)