File tree Expand file tree Collapse file tree 4 files changed +15
-5
lines changed
intercom-java/src/main/java/io/intercom/api Expand file tree Collapse file tree 4 files changed +15
-5
lines changed Original file line number Diff line number Diff line change 11### Changes
22
3+ #### 2.5.0
4+ - Fix for #207 to remove a non-existent API call (PR #211 )
5+ - Fix for #197 to prioritise user_id when tagging users (PR #199 )
6+ - Update of Jackson dependencies (PR #203 )
7+ - Fix for #197 to prioritise user_id when tagging users (PR #199 )
8+ - Fix for #202 to enable retrieving company session count (PR #213 )
9+ - Update Gradle (PR #216 )
10+ - Add template for Pull Requests (PR #217 )
11+ - Removal of Travis (PR #219 )
12+
313#### 2.4.0
414- Fix for gradle release issue #192
515- Update related to API user archive and permanent delete option #195
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ and add the project declaration to your `pom.xml`:
3838<dependency >
3939 <groupId >io.intercom</groupId >
4040 <artifactId >intercom-java</artifactId >
41- <version >2.4 .0</version >
41+ <version >2.5 .0</version >
4242</dependency >
4343```
4444
@@ -56,7 +56,7 @@ and add the project to the `dependencies` block in your `build.gradle`:
5656
5757``` groovy
5858dependencies {
59- compile 'io.intercom:intercom-java:2.4 .0'
59+ compile 'io.intercom:intercom-java:2.5 .0'
6060}
6161```
6262
@@ -71,7 +71,7 @@ resolvers += "jcenter" at "http://jcenter.bintray.com"
7171and add the project to your ` libraryDependencies ` in your ` build.sbt ` :
7272
7373``` scala
74- libraryDependencies += " io.intercom" % " intercom-java" % " 2.4 .0"
74+ libraryDependencies += " io.intercom" % " intercom-java" % " 2.5 .0"
7575```
7676
7777## Resources
Original file line number Diff line number Diff line change 1- version : 2.4 .0
1+ version : 2.5 .0
22
33groupId : io.intercom
44
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ enum AuthKeyType {
1515 TOKEN
1616 }
1717
18- private static final String VERSION = "2.4 .0" ;
18+ private static final String VERSION = "2.5 .0" ;
1919
2020 public static final String USER_AGENT = "intercom-java/" + Intercom .VERSION ;
2121
You can’t perform that action at this time.
0 commit comments