From 14004bb00a274c580b67d26ec81b643879b3cdda Mon Sep 17 00:00:00 2001 From: Cathal Horan Date: Mon, 15 Oct 2018 11:58:23 +0100 Subject: [PATCH] bumping version to 2.7.0 --- CHANGES.md | 8 ++++++++ README.md | 6 +++--- gradle.properties | 2 +- intercom-java/src/main/java/io/intercom/api/Intercom.java | 2 +- 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index f4095e1c..824fc1d4 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,13 @@ ### Changes +### 2.7.0 +This update includes the removal of an option which is not possible viua the API. +There was an option in the SDK to manually update the company sessions account but this is not possible vai the API. +It is doubbtful that it was being used but just in case we will make this release 2.7.0 + +#232 - Add the visitor endpoint functionality for the java SDK. +#233 - Remove option to set company session count since it returns error as it is not possible to set it + #### 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. diff --git a/README.md b/README.md index c414bd9c..27ca8fc0 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.6.0 + 2.7.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.6.0' + compile 'io.intercom:intercom-java:2.7.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.6.0" +libraryDependencies += "io.intercom" % "intercom-java" % "2.7.0" ``` diff --git a/gradle.properties b/gradle.properties index 8a8539dc..a5f874d8 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -version: 2.6.0 +version: 2.7.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 251ab430..5a6e0b15 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.6.0"; + private static final String VERSION = "2.7.0"; public static final String USER_AGENT = "intercom-java/" + Intercom.VERSION;