Skip to content

Commit 47c5c2d

Browse files
authored
Version bump (#229)
1 parent 935b9f7 commit 47c5c2d

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

CHANGES.md

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

3+
#### 2.6.0
4+
There a number of changed in this version so updating to 2.6
5+
Highlights are adding more attributes to the company resource and new features on admin resource.
6+
For more info see the specific PR or issue noted here and/or the updated readme
7+
- use thread local (optionally) for context setting (#204)
8+
- Add support for more company attributes (#183)
9+
- Add deletion by ID and User ID (#200)
10+
- Add support for new Admin endpoints and attributes (#198)
11+
- Add tests for companies (#215)
12+
- Update readme to document permanent deletion and rename old delete method to archive (#228)
13+
314
#### 2.5.2
415
- Adding tagging abilities to Contacts.
516

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.5.2</version>
42+
<version>2.6.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
5959
dependencies {
60-
compile 'io.intercom:intercom-java:2.5.2'
60+
compile 'io.intercom:intercom-java:2.6.0'
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.5.2"
75+
libraryDependencies += "io.intercom" % "intercom-java" % "2.6.0"
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.5.2
1+
version: 2.6.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
@@ -25,7 +25,7 @@ enum AuthKeyType {
2525
TOKEN
2626
}
2727

28-
private static final String VERSION = "2.5.2";
28+
private static final String VERSION = "2.6.0";
2929

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

0 commit comments

Comments
 (0)