Skip to content

Commit f27a6a9

Browse files
committed
1.2.0
1 parent 4cbcfc9 commit f27a6a9

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

CHANGES.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
### Changes
22

3+
#### 1.2.0
4+
5+
- Allow conversations to be assigned to others on your team. Conversations
6+
are the most beautiful things, and now you can share them with others through
7+
the API.
8+
9+
- Support closing and opening conversations, either directly or with a reply.
10+
11+
312
#### 1.1.2
413

514
- make setUserAgentData public. Previously this was a protected method.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ and add the project declaration to your `pom.xml`:
3838
<dependency>
3939
<groupId>io.intercom</groupId>
4040
<artifactId>intercom-java</artifactId>
41-
<version>1.1.2</version>
41+
<version>1.2.0</version>
4242
</dependency>
4343
```
4444

@@ -56,7 +56,7 @@ and add the project to the `dependencies` block in your `build.gradle`:
5656

5757
```groovy
5858
dependencies {
59-
compile 'io.intercom:intercom-java:1.1.2'
59+
compile 'io.intercom:intercom-java:1.2.0'
6060
}
6161
```
6262

@@ -71,7 +71,7 @@ resolvers += "jcenter" at "http://jcenter.bintray.com"
7171
and add the project to your `libraryDependencies` in your `build.sbt`:
7272

7373
```scala
74-
libraryDependencies += "io.intercom" % "intercom-java" % "1.1.2"
74+
libraryDependencies += "io.intercom" % "intercom-java" % "1.2.0"
7575
```
7676

7777
## Resources

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 1.1.2
1+
version: 1.2.0
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
@@ -14,7 +14,7 @@ public class Intercom {
1414

1515
static final String AUTH_BEARER = "Bearer";
1616

17-
private static final String VERSION = "1.1.2";
17+
private static final String VERSION = "1.2.0";
1818

1919
public static final String USER_AGENT = "intercom-java/" + Intercom.VERSION;
2020

0 commit comments

Comments
 (0)