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.8.1
4+
5+ #### Add support for delivered_as field (#264 )
6+ Added mapping for the delivered_as field on the Conversation model.
7+
8+ #### Add support for customer_first_reply field (#263 )
9+ Added mapping for the customer_first_reply field on the Conversation model.
10+
311### 2.8.0
412There are a number of new features and changes in this release so will move to version 2.8.
513The most important one from a breaking change point of view is that the use of API keys is no longer allowed.
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.8.0 </version >
42+ <version >2.8.1 </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.8.0 '
60+ compile 'io.intercom:intercom-java:2.8.1 '
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.8.0 "
75+ libraryDependencies += " io.intercom" % " intercom-java" % " 2.8.1 "
7676```
7777
7878
Original file line number Diff line number Diff line change 1- version : 2.8.0
1+ version : 2.8.1
22
33groupId : io.intercom
44
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ static class Context {
1717
1818 private static volatile URI apiBaseURI = API_BASE_URI ;
1919
20- private static final String VERSION = "2.8.0 " ;
20+ private static final String VERSION = "2.8.1 " ;
2121
2222 public static final String USER_AGENT = "intercom-java/" + Intercom .VERSION ;
2323
You can’t perform that action at this time.
0 commit comments