Skip to content

Commit b6b9fa9

Browse files
committed
bump version
1 parent 0051ad2 commit b6b9fa9

File tree

4 files changed

+27
-23
lines changed

4 files changed

+27
-23
lines changed

CHANGES.md

Lines changed: 22 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,31 @@
11
### Changes
22

3+
#### 2.0.0
4+
5+
- Fixes subscription metadata deserialization
6+
37
#### 1.3.1
48

59
- Fixes company removal
610

711
#### 1.3.0
812

913
- Is a rollup of the 1.3.0 beta releases.
10-
14+
1115
#### 1.3.0-b3
1216

1317
- Configure Jackson ObjectMapper once [76](https://github.com/intercom/intercom-java/issues/76)
1418

1519
#### 1.3.0-b2
1620

17-
- Allow users to be removed from companies.
21+
- Allow users to be removed from companies.
1822

1923
#### 1.3.0-b1
2024

21-
- Support bulk user and event submission. Save your request rate limit for
25+
- Support bulk user and event submission. Save your request rate limit for
2226
a rainy day! You can post and delete users, and post events.
2327

24-
- Add a currentTimestamp() helper to Intercom. This divides currentTimeMillis
28+
- Add a currentTimestamp() helper to Intercom. This divides currentTimeMillis
2529
by 1000 to produce a second level value.
2630

2731
#### 1.2.1
@@ -30,13 +34,13 @@ by 1000 to produce a second level value.
3034

3135
#### 1.2.0
3236

33-
- Allow conversations to be assigned to others on your team. Conversations
34-
are the most beautiful things, and now you can share them with others through
37+
- Allow conversations to be assigned to others on your team. Conversations
38+
are the most beautiful things, and now you can share them with others through
3539
the API.
3640

3741
- Support closing and opening conversations, either directly or with a reply.
38-
39-
42+
43+
4044
#### 1.1.2
4145

4246
- make setUserAgentData public. Previously this was a protected method.
@@ -47,17 +51,17 @@ the API.
4751

4852
#### 1.1.0
4953

50-
- add support for [Contacts](https://github.com/intercom/intercom-java#contacts)
54+
- add support for [Contacts](https://github.com/intercom/intercom-java#contacts)
5155

5256
#### 1.0.9
5357

54-
- remove secondary getters on user that stop older jackson versions working [48](https://github.com/intercom/intercom-java/issues/45) (caused in [40](https://github.com/intercom/intercom-java/issues/48)). Doing a bang up job on regression bugs atm.
58+
- remove secondary getters on user that stop older jackson versions working [48](https://github.com/intercom/intercom-java/issues/45) (caused in [40](https://github.com/intercom/intercom-java/issues/48)). Doing a bang up job on regression bugs atm.
5559

5660
#### 1.0.8
5761

5862
- fix user update regression [45](https://github.com/intercom/intercom-java/issues/45) (caused in [40](https://github.com/intercom/intercom-java/issues/40))
59-
60-
- don't send values for `unsubscribed_from_emails`, `update_last_request_at` or `new_session` unless set
63+
64+
- don't send values for `unsubscribed_from_emails`, `update_last_request_at` or `new_session` unless set
6165

6266
#### 1.0.7
6367

@@ -73,7 +77,7 @@ allow the signed_up_at user field to be submitted
7377

7478
#### 1.0.4
7579

76-
allow the intercom user id field to be submitted
80+
allow the intercom user id field to be submitted
7781

7882
#### 1.0.3
7983

@@ -86,21 +90,21 @@ encode social profile urls for user objects
8690
#### 1.0.1
8791

8892
- send custom company attributes on update
89-
93+
9094
- fix NPE when company has no plan on update
91-
92-
- invalidate setSessionCount on Company [27](https://github.com/intercom/intercom-java/issues/27)
95+
96+
- invalidate setSessionCount on Company [27](https://github.com/intercom/intercom-java/issues/27)
9397

9498
#### 1.0.0
9599

96100
- removed tag methods requiring collections
97-
101+
98102
- handle non-json error entities from server
99103

100104
#### 0.1.0
101105

102106
- support untag of users and companies
103-
107+
104108
- renamed of current page and page methods on collections (breaking)
105109

106110
#### 0.0.5

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.3.1</version>
41+
<version>2.0.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.3.1'
59+
compile 'io.intercom:intercom-java:2.0.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.3.1"
74+
libraryDependencies += "io.intercom" % "intercom-java" % "2.0.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.3.1
1+
version: 2.0.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.3.1";
17+
private static final String VERSION = "2.0.0";
1818

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

0 commit comments

Comments
 (0)