Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Shiranuit committed Apr 27, 2022
1 parent 318e69a commit 01a8042
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,21 +37,21 @@ You can then find the jars file in build/libs/

| SDK Version | Ktor Version | Gradle Version | Java Version |
| :----------: | :----------: | :------------: | :----------: |
| **< 1.2.4** | **1.5.2** | **6.1** | **JDK-8** |
| **>= 1.2.4** | **1.6.8** | **7.4** | **JDK-11** |
| **< 1.3.0** | **1.5.2** | **6.1** | **JDK-8** |
| **>= 1.3.0** | **1.6.8** | **7.4** | **JDK-11** |

| SDK Version | Kuzzle Version |
| :----------: | :------------: |
| **< 1.2.4** | **2.x.x** |
| **>= 1.2.4** | **Websocket: 2.x.x**<br>**HTTP: >=2.18.1** |
| **< 1.3.0** | **2.x.x** |
| **>= 1.3.0** | **Websocket: 2.x.x**<br>**HTTP: >=2.18.1** |

### Maven

```xml
<dependency>
<groupId>io.kuzzle</groupId>
<artifactId>sdk-jvm</artifactId>
<version>1.2.4</version>
<version>1.3.0</version>
<type>pom</type>
</dependency>
```
Expand All @@ -60,19 +60,19 @@ You can then find the jars file in build/libs/
### Gradle

```groovy
compile 'io.kuzzle:sdk-jvm:1.2.4'
compile 'io.kuzzle:sdk-jvm:1.3.0'
```

For amd64:

```groovy
compile 'io.kuzzle:sdk-jvm:1.2.4'
compile 'io.kuzzle:sdk-jvm:1.3.0'
```

### Ivy

```html
<dependency org='io.kuzzle' name='sdk-jvm' rev='1.2.4'>
<dependency org='io.kuzzle' name='sdk-jvm' rev='1.3.0'>
<artifact name='sdk-jvm' ext='pom' ></artifact>
</dependency>
```
Expand Down
6 changes: 3 additions & 3 deletions doc/1/getting-started/java/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ To build the project, add the following lines:
<dependency>
<groupId>io.kuzzle</groupId>
<artifactId>sdk-jvm</artifactId>
<version>1.2.4</version>
<version>1.3.0</version>
<type>pom</type>
</dependency>
```
Expand All @@ -70,14 +70,14 @@ To build the project, add the following lines:

```groovy
dependencies {
compile 'io.kuzzle:sdk-jvm:1.2.4'
compile 'io.kuzzle:sdk-jvm:1.3.0'
}
```

### Ivy

```html
<dependency org='io.kuzzle' name='sdk-jvm' rev='1.2.4'>
<dependency org='io.kuzzle' name='sdk-jvm' rev='1.3.0'>
<artifact name='sdk-jvm' ext='pom' ></artifact>
</dependency>
```
Expand Down
6 changes: 3 additions & 3 deletions doc/1/getting-started/kotlin/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ To build the project, add the following lines:
<dependency>
<groupId>io.kuzzle</groupId>
<artifactId>sdk-jvm</artifactId>
<version>1.2.4</version>
<version>1.3.0</version>
<type>pom</type>
</dependency>
```
Expand All @@ -82,14 +82,14 @@ To build the project, add the following lines:

```groovy
dependencies {
compile 'io.kuzzle:sdk-jvm:1.2.4'
compile 'io.kuzzle:sdk-jvm:1.3.0'
}
```

### Ivy

```html
<dependency org='io.kuzzle' name='sdk-jvm' rev='1.2.4'>
<dependency org='io.kuzzle' name='sdk-jvm' rev='1.3.0'>
<artifact name='sdk-jvm' ext='pom' ></artifact>
</dependency>
```
Expand Down

0 comments on commit 01a8042

Please sign in to comment.