File tree Expand file tree Collapse file tree 4 files changed +13
-5
lines changed
intercom-java/src/main/java/io/intercom/api Expand file tree Collapse file tree 4 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 11### Changes
22
3+ ### 2.7.0
4+ This update includes the removal of an option which is not possible viua the API.
5+ There was an option in the SDK to manually update the company sessions account but this is not possible vai the API.
6+ It is doubbtful that it was being used but just in case we will make this release 2.7.0
7+
8+ #232 - Add the visitor endpoint functionality for the java SDK.
9+ #233 - Remove option to set company session count since it returns error as it is not possible to set it
10+
311#### 2.6.0
412There a number of changed in this version so updating to 2.6
513Highlights are adding more attributes to the company resource and new features on admin resource.
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.6 .0</version >
42+ <version >2.7 .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.6 .0'
60+ compile 'io.intercom:intercom-java:2.7 .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.6 .0"
75+ libraryDependencies += " io.intercom" % " intercom-java" % " 2.7 .0"
7676```
7777
7878
Original file line number Diff line number Diff line change 1- version : 2.6 .0
1+ version : 2.7 .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.6 .0" ;
28+ private static final String VERSION = "2.7 .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