Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Shiranuit committed Jun 15, 2022
1 parent b4fd468 commit 9b6dbca
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ plugins {

val artifactName = "sdk-jvm"
val artifactGroup = "io.kuzzle"
val artifactVersion = "1.3.1"
val artifactVersion = "1.3.2"

val pomUrl = "https://github.com/kuzzleio/sdk-jvm"
val pomScmUrl = "https://github.com/kuzzleio/sdk-jvm"
Expand Down Expand Up @@ -61,11 +61,11 @@ dependencies {

testImplementation("org.jetbrains.kotlin:kotlin-test-junit")
testImplementation("io.mockk:mockk:1.8.13")
testImplementation("io.ktor:ktor-client-mock:1.3.1")
testImplementation("io.ktor:ktor-client-mock:1.3.2")
testImplementation("io.ktor:ktor-client-mock-jvm:$ktorVersion")
testImplementation("io.ktor:ktor-client-json-jvm:$ktorVersion")
testImplementation("io.ktor:ktor-client-mock-js:1.3.1")
testImplementation("io.ktor:ktor-client-mock-native:1.3.1")
testImplementation("io.ktor:ktor-client-mock-js:1.3.2")
testImplementation("io.ktor:ktor-client-mock-native:1.3.2")
testImplementation("org.mock-server:mockserver-netty:5.3.0")
testImplementation("io.cucumber:cucumber-java8:7.0.0")
testImplementation("io.cucumber:cucumber-junit:7.0.0")
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.3.1</version>
<version>1.3.2</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.3.1'
compile 'io.kuzzle:sdk-jvm:1.3.2'
}
```

### Ivy

```html
<dependency org='io.kuzzle' name='sdk-jvm' rev='1.3.1'>
<dependency org='io.kuzzle' name='sdk-jvm' rev='1.3.2'>
<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.3.1</version>
<version>1.3.2</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.3.1'
compile 'io.kuzzle:sdk-jvm:1.3.2'
}
```

### Ivy

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

0 comments on commit 9b6dbca

Please sign in to comment.