Skip to content

Commit

Permalink
Bump version 0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Xavier Arias committed Dec 5, 2019
1 parent a16450d commit 9369ebd
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@ Add the relevant dependency to your project:
<dependency>
<groupId>org.web3j.corda</groupId>
<artifactId>web3j-corda-core</artifactId>
<version>0.2.4</version>
<version>0.2.5</version>
</dependency>
```

### Gradle

```groovy
dependencies {
implementation 'org.web3j.corda:web3j-corda-core:0.2.4'
implementation 'org.web3j.corda:web3j-corda-core:0.2.5'
}
```

Expand Down
8 changes: 4 additions & 4 deletions docs/dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ To resolve all web3j-corda relevant dependencies, add the following to your proj
<dependency>
<groupId>org.web3j.corda</groupId>
<artifactId>web3j-corda-core</artifactId>
<version>0.2.4</version>
<version>0.2.5</version>
</dependency>
```

### Gradle

```groovy
dependencies {
implementation 'org.web3j.corda:web3j-corda-core:0.2.4'
implementation 'org.web3j.corda:web3j-corda-core:0.2.5'
}
```

Expand All @@ -29,14 +29,14 @@ To use the Web3j Corda test module, you'all also need to include it in your proj
<dependency>
<groupId>org.web3j.corda</groupId>
<artifactId>web3j-corda-test</artifactId>
<version>0.2.4</version>
<version>0.2.5</version>
</dependency>
```

### Gradle

```groovy
dependencies {
testImplementation "org.web3j.corda:web3j-corda-test:0.2.4"
testImplementation "org.web3j.corda:web3j-corda-test:0.2.5"
}
```
4 changes: 2 additions & 2 deletions docs/generating.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ To use the Web3j Corda command-line from your project, you'all also need to incl
<dependency>
<groupId>org.web3j.corda</groupId>
<artifactId>web3j-corda-console</artifactId>
<version>0.2.4</version>
<version>0.2.5</version>
</dependency>
```

### Gradle

```groovy
dependencies {
testImplementation "org.web3j.corda:web3j-corda-console:0.2.4"
testImplementation "org.web3j.corda:web3j-corda-console:0.2.5"
}
```
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
group=org.web3j.corda
version=0.2.4
version=0.2.5
kotlin.code.style=official
2 changes: 1 addition & 1 deletion scripts/installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion scripts/win_installer.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 9369ebd

Please sign in to comment.