diff --git a/CHANGES.md b/CHANGES.md index 8cf2d23c..f4095e1c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,16 @@ ### Changes +#### 2.6.0 +There a number of changed in this version so updating to 2.6 +Highlights are adding more attributes to the company resource and new features on admin resource. +For more info see the specific PR or issue noted here and/or the updated readme +- use thread local (optionally) for context setting (#204) +- Add support for more company attributes (#183) +- Add deletion by ID and User ID (#200) +- Add support for new Admin endpoints and attributes (#198) +- Add tests for companies (#215) +- Update readme to document permanent deletion and rename old delete method to archive (#228) + #### 2.5.2 - Adding tagging abilities to Contacts. diff --git a/README.md b/README.md index e6f00d86..7c93bb70 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ and add the project declaration to your `pom.xml`: io.intercom intercom-java - 2.5.2 + 2.6.0 ``` @@ -57,7 +57,7 @@ and add the project to the `dependencies` block in your `build.gradle`: ```groovy dependencies { - compile 'io.intercom:intercom-java:2.5.2' + compile 'io.intercom:intercom-java:2.6.0' } ``` @@ -72,7 +72,7 @@ resolvers += "jcenter" at "http://jcenter.bintray.com" and add the project to your `libraryDependencies` in your `build.sbt`: ```scala -libraryDependencies += "io.intercom" % "intercom-java" % "2.5.2" +libraryDependencies += "io.intercom" % "intercom-java" % "2.6.0" ``` diff --git a/gradle.properties b/gradle.properties index e1a0d239..8a8539dc 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -version: 2.5.2 +version: 2.6.0 groupId: io.intercom diff --git a/intercom-java/src/main/java/io/intercom/api/Intercom.java b/intercom-java/src/main/java/io/intercom/api/Intercom.java index 9bc5e71d..251ab430 100644 --- a/intercom-java/src/main/java/io/intercom/api/Intercom.java +++ b/intercom-java/src/main/java/io/intercom/api/Intercom.java @@ -25,7 +25,7 @@ enum AuthKeyType { TOKEN } - private static final String VERSION = "2.5.2"; + private static final String VERSION = "2.6.0"; public static final String USER_AGENT = "intercom-java/" + Intercom.VERSION;