Skip to content

Commit 8c5a8c2

Browse files
authored
Version bump to 2.8.1 (#267)
1 parent 6edfc97 commit 8c5a8c2

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
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
412
There are a number of new features and changes in this release so will move to version 2.8.
513
The most important one from a breaking change point of view is that the use of API keys is no longer allowed.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
5959
dependencies {
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"
7272
and 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

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 2.8.0
1+
version: 2.8.1
22

33
groupId: io.intercom
44

intercom-java/src/main/java/io/intercom/api/Intercom.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)