Skip to content

Commit

Permalink
Merge pull request #33 from kintone/chore-update-jackson
Browse files Browse the repository at this point in the history
chore: update dependency Jackson to 2.13.2.2
  • Loading branch information
0gr authored Apr 8, 2022
2 parents 50eae99 + 6deef71 commit 76118bd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ API client library for Kintone REST APIs on Java.
Add dependency declaration in `build.gradle` of your project.
```
dependencies {
implementation 'com.kintone:kintone-java-client:1.3.0'
implementation 'com.kintone:kintone-java-client:1.3.1'
}
```
- For projects using Maven
Expand All @@ -17,7 +17,7 @@ API client library for Kintone REST APIs on Java.
<dependency>
<groupId>com.kintone</groupId>
<artifactId>kintone-java-client</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</dependency>
```

Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
id 'com.github.hierynomus.license' version '0.15.0'
}

version = '1.3.0'
version = '1.3.1'
sourceCompatibility = 1.8
targetCompatibility = 1.8

Expand All @@ -26,8 +26,8 @@ artifacts {

dependencies {
implementation 'org.apache.httpcomponents.client5:httpclient5:5.1.3'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.1'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.1'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.2.2'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.2'

compileOnly 'org.projectlombok:lombok:1.18.22'
annotationProcessor 'org.projectlombok:lombok:1.18.22'
Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ client.close();
Add dependency declaration in `build.gradle` of your project.
```groovy
dependencies {
implementation 'com.kintone:kintone-java-client:1.3.0'
implementation 'com.kintone:kintone-java-client:1.3.1'
}
```

Expand All @@ -39,7 +39,7 @@ Add dependency declaration in `pom.xml` of your project.
<dependency>
<groupId>com.kintone</groupId>
<artifactId>kintone-java-client</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</dependency>
```

Expand Down

0 comments on commit 76118bd

Please sign in to comment.