Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
### Changes

#### 2.6.0
There a number of changed in this version so updating to 2.6
Highlights are adding more attributes to the company resource and new features on admin resource.
For more info see the specific PR or issue noted here and/or the updated readme
- use thread local (optionally) for context setting (#204)
- Add support for more company attributes (#183)
- Add deletion by ID and User ID (#200)
- Add support for new Admin endpoints and attributes (#198)
- Add tests for companies (#215)
- Update readme to document permanent deletion and rename old delete method to archive (#228)

#### 2.5.2
- Adding tagging abilities to Contacts.

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ and add the project declaration to your `pom.xml`:
<dependency>
<groupId>io.intercom</groupId>
<artifactId>intercom-java</artifactId>
<version>2.5.2</version>
<version>2.6.0</version>
</dependency>
```

Expand All @@ -57,7 +57,7 @@ and add the project to the `dependencies` block in your `build.gradle`:

```groovy
dependencies {
compile 'io.intercom:intercom-java:2.5.2'
compile 'io.intercom:intercom-java:2.6.0'
}
```

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

```scala
libraryDependencies += "io.intercom" % "intercom-java" % "2.5.2"
libraryDependencies += "io.intercom" % "intercom-java" % "2.6.0"
```


Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 2.5.2
version: 2.6.0

groupId: io.intercom

Expand Down
2 changes: 1 addition & 1 deletion intercom-java/src/main/java/io/intercom/api/Intercom.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ enum AuthKeyType {
TOKEN
}

private static final String VERSION = "2.5.2";
private static final String VERSION = "2.6.0";

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

Expand Down