Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
csmuller committed Feb 5, 2024
2 parents c9d36e7 + cd61632 commit cfa3b14
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 @@ -9,7 +9,7 @@
<img src="../images/neow3j-neo3.png" alt="Logo" id="logo">
</div>

<h1 id="cover-header">neow3j <small>3.22.0</small></h1>
<h1 id="cover-header">neow3j <small>3.22.1</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 @@ -58,7 +58,7 @@ To make use of all neow3j SDK features, add the `io.neow3j:contract` dependency
__Gradle__

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

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

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

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

__Maven__
Expand All @@ -88,7 +88,7 @@ __Maven__
<dependency>
<groupId>io.neow3j</groupId>
<artifactId>devpack</artifactId>
<version>3.22.0</version>
<version>3.22.1</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.22.0"
id 'io.neow3j.gradle-plugin' version "3.22.1"
}
```

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.22.0'
implementation 'io.neow3j:devpack:3.22.1'
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.0',
'io.neow3j:devpack-test:3.22.0',
'io.neow3j:devpack-test:3.22.1',
'ch.qos.logback:logback-classic:1.2.11'
deployImplementation 'io.neow3j:compiler:3.22.0',
deployImplementation 'io.neow3j:compiler:3.22.1',
'ch.qos.logback:logback-classic:1.2.11'
}
```
Expand Down

0 comments on commit cfa3b14

Please sign in to comment.