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
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
### Changes

#### 2.3.1
- Updating release versions due to number of new features ebing added
- Add support for deletion by user_id or email (#175)
- Add support for listing events (#173)
- Add support for updating avatars for Users and Contacts/Leads (#174)
- Add support for more message attributes: url, id and attachments (#177)

#### 2.2.12
- Update readme with more list examples (#165)
- Remove restrictions on listing conversations via user and admin (#171)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ and add the project declaration to your `pom.xml`:
<dependency>
<groupId>io.intercom</groupId>
<artifactId>intercom-java</artifactId>
<version>2.2.12</version>
<version>2.3.1</version>
</dependency>
```

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

```groovy
dependencies {
compile 'io.intercom:intercom-java:2.2.12'
compile 'io.intercom:intercom-java:2.3.1'
}
```

Expand All @@ -71,7 +71,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.2.12"
libraryDependencies += "io.intercom" % "intercom-java" % "2.3.1"
```

## Resources
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.2.12
version: 2.3.1

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 @@ -15,7 +15,7 @@ enum AuthKeyType {
TOKEN
}

private static final String VERSION = "2.2.12";
private static final String VERSION = "2.3.1";

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

Expand Down