From 9369ebd5d05aef04890e7a2b9d9428581d1659ab Mon Sep 17 00:00:00 2001 From: Xavier Arias Date: Thu, 5 Dec 2019 17:07:22 +0000 Subject: [PATCH] Bump version 0.2.5 --- README.md | 4 ++-- docs/dependencies.md | 8 ++++---- docs/generating.md | 4 ++-- gradle.properties | 2 +- scripts/installer.sh | 2 +- scripts/win_installer.ps1 | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 43318a5..70d075f 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ Add the relevant dependency to your project: org.web3j.corda web3j-corda-core - 0.2.4 + 0.2.5 ``` @@ -69,7 +69,7 @@ Add the relevant dependency to your project: ```groovy dependencies { - implementation 'org.web3j.corda:web3j-corda-core:0.2.4' + implementation 'org.web3j.corda:web3j-corda-core:0.2.5' } ``` diff --git a/docs/dependencies.md b/docs/dependencies.md index d6ecd21..13605c8 100644 --- a/docs/dependencies.md +++ b/docs/dependencies.md @@ -9,7 +9,7 @@ To resolve all web3j-corda relevant dependencies, add the following to your proj org.web3j.corda web3j-corda-core - 0.2.4 + 0.2.5 ``` @@ -17,7 +17,7 @@ To resolve all web3j-corda relevant dependencies, add the following to your proj ```groovy dependencies { - implementation 'org.web3j.corda:web3j-corda-core:0.2.4' + implementation 'org.web3j.corda:web3j-corda-core:0.2.5' } ``` @@ -29,7 +29,7 @@ To use the Web3j Corda test module, you'all also need to include it in your proj org.web3j.corda web3j-corda-test - 0.2.4 + 0.2.5 ``` @@ -37,6 +37,6 @@ To use the Web3j Corda test module, you'all also need to include it in your proj ```groovy dependencies { - testImplementation "org.web3j.corda:web3j-corda-test:0.2.4" + testImplementation "org.web3j.corda:web3j-corda-test:0.2.5" } ``` \ No newline at end of file diff --git a/docs/generating.md b/docs/generating.md index e841b8f..4f05eb5 100644 --- a/docs/generating.md +++ b/docs/generating.md @@ -36,7 +36,7 @@ To use the Web3j Corda command-line from your project, you'all also need to incl org.web3j.corda web3j-corda-console - 0.2.4 + 0.2.5 ``` @@ -44,6 +44,6 @@ To use the Web3j Corda command-line from your project, you'all also need to incl ```groovy dependencies { - testImplementation "org.web3j.corda:web3j-corda-console:0.2.4" + testImplementation "org.web3j.corda:web3j-corda-console:0.2.5" } ``` diff --git a/gradle.properties b/gradle.properties index 42fcb33..54612c5 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,3 @@ group=org.web3j.corda -version=0.2.4 +version=0.2.5 kotlin.code.style=official diff --git a/scripts/installer.sh b/scripts/installer.sh index 4aa1071..74be654 100755 --- a/scripts/installer.sh +++ b/scripts/installer.sh @@ -3,7 +3,7 @@ installed_flag=0 local=~/ -web3j_corda_version="0.2.4" +web3j_corda_version="0.2.5" check_if_installed() { if [ -x "$(command -v web3j-corda)" ] &>/dev/null; then diff --git a/scripts/win_installer.ps1 b/scripts/win_installer.ps1 index e7f7ff4..431d5ad 100644 --- a/scripts/win_installer.ps1 +++ b/scripts/win_installer.ps1 @@ -2,7 +2,7 @@ Set-StrictMode -Version Latest $ErrorActionPreference = "Stop" $PSDefaultParameterValues['*:ErrorAction']='Stop' -$web3j_corda_version="0.2.4" +$web3j_corda_version="0.2.5" [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 $ProgressPreference = 'SilentlyContinue'