File tree Expand file tree Collapse file tree 4 files changed +16
-5
lines changed
intercom-java/src/main/java/io/intercom/api Expand file tree Collapse file tree 4 files changed +16
-5
lines changed Original file line number Diff line number Diff line change 11### Changes
22
3+ #### 2.6.0
4+ There a number of changed in this version so updating to 2.6
5+ Highlights are adding more attributes to the company resource and new features on admin resource.
6+ For more info see the specific PR or issue noted here and/or the updated readme
7+ - use thread local (optionally) for context setting (#204 )
8+ - Add support for more company attributes (#183 )
9+ - Add deletion by ID and User ID (#200 )
10+ - Add support for new Admin endpoints and attributes (#198 )
11+ - Add tests for companies (#215 )
12+ - Update readme to document permanent deletion and rename old delete method to archive (#228 )
13+
314#### 2.5.2
415- Adding tagging abilities to Contacts.
516
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ and add the project declaration to your `pom.xml`:
3939<dependency >
4040 <groupId >io.intercom</groupId >
4141 <artifactId >intercom-java</artifactId >
42- <version >2.5.2 </version >
42+ <version >2.6.0 </version >
4343</dependency >
4444```
4545
@@ -57,7 +57,7 @@ and add the project to the `dependencies` block in your `build.gradle`:
5757
5858``` groovy
5959dependencies {
60- compile 'io.intercom:intercom-java:2.5.2 '
60+ compile 'io.intercom:intercom-java:2.6.0 '
6161}
6262```
6363
@@ -72,7 +72,7 @@ resolvers += "jcenter" at "http://jcenter.bintray.com"
7272and add the project to your ` libraryDependencies ` in your ` build.sbt ` :
7373
7474``` scala
75- libraryDependencies += " io.intercom" % " intercom-java" % " 2.5.2 "
75+ libraryDependencies += " io.intercom" % " intercom-java" % " 2.6.0 "
7676```
7777
7878
Original file line number Diff line number Diff line change 1- version : 2.5.2
1+ version : 2.6.0
22
33groupId : io.intercom
44
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ enum AuthKeyType {
2525 TOKEN
2626 }
2727
28- private static final String VERSION = "2.5.2 " ;
28+ private static final String VERSION = "2.6.0 " ;
2929
3030 public static final String USER_AGENT = "intercom-java/" + Intercom .VERSION ;
3131
You can’t perform that action at this time.
0 commit comments