Skip to content

Commit

Permalink
Update neow3j version to 3.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
csmuller committed Jan 22, 2024
1 parent fbc2fb2 commit 879a98f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions docs/neo-n3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<img src="../images/neow3j-neo3.png" alt="Logo" id="logo">
</div>

<h1 id="cover-header">neow3j <small>3.21.2</small></h1>
<h1 id="cover-header">neow3j <small>3.22.0</small></h1>

Neow3j is a development toolkit that provides easy and reliable tools to build Neo dApps and Smart Contracts using the Java
platform (Java, Kotlin, Android). It is an open-source project developed by the Neo community and maintained by
Expand Down Expand Up @@ -36,7 +36,7 @@ To make use of all neow3j SDK features, add the `io.neow3j:contract` dependency
__Gradle__

```groovy
implementation 'io.neow3j:contract:3.21.2'
implementation 'io.neow3j:contract:3.22.0'
```

__Maven__
Expand All @@ -45,7 +45,7 @@ __Maven__
<dependency>
<groupId>io.neow3j</groupId>
<artifactId>contract</artifactId>
<version>3.21.2</version>
<version>3.22.0</version>
</dependency>
```

Expand All @@ -57,7 +57,7 @@ you want to play around with the devpack, add the `io.neow3j:devpack` dependency
__Gradle__

```groovy
implementation 'io.neow3j:devpack:3.21.2'
implementation 'io.neow3j:devpack:3.22.0'
```

__Maven__
Expand All @@ -66,7 +66,7 @@ __Maven__
<dependency>
<groupId>io.neow3j</groupId>
<artifactId>devpack</artifactId>
<version>3.21.2</version>
<version>3.22.0</version>
</dependency>
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ contract compilation via a Gradle task called `neow3jCompile`. The Java plugin i
```groovy
plugins {
id 'java'
id 'io.neow3j.gradle-plugin' version "3.21.2"
id 'io.neow3j.gradle-plugin' version "3.22.0"
}
```

Expand Down Expand Up @@ -90,13 +90,13 @@ Then we need to define the dependencies, which are `io.neow3j:devpack` for writi

```groovy
dependencies {
implementation 'io.neow3j:devpack:3.21.2'
implementation 'io.neow3j:devpack:3.22.0'
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.0',
'io.neow3j:devpack-test:3.21.2',
'io.neow3j:devpack-test:3.22.0',
'ch.qos.logback:logback-classic:1.2.11'
deployImplementation 'io.neow3j:compiler:3.21.2',
deployImplementation 'io.neow3j:compiler:3.22.0',
'ch.qos.logback:logback-classic:1.2.11'
}
```
Expand Down

0 comments on commit 879a98f

Please sign in to comment.