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

### 2.8.2

#### Add support for has_inbox_seat field (#272)
Added mapping for the has_inbox_seat field to the Admin user model.
### 2.8.1

#### Add support for delivered_as field (#264)
Expand Down
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![Maven Central](https://img.shields.io/maven-central/v/io.intercom/intercom-java.svg?label=Maven%20Central)](https://search.maven.org/artifact/io.intercom/intercom-java)
![Intercom API Version](https://img.shields.io/badge/Intercom%20API%20Version-1.3-blue)

Java bindings for the [Intercom API](https://api.intercom.io/docs)
> Java bindings for the [Intercom API](https://api.intercom.io/docs)

## Project Updates

Expand All @@ -14,6 +14,14 @@ This project was previously publishing releases to JCenter, which is being retir

To allow continued access to past versions, we've migrated them to Maven Central.

### Maintenance

We're currently building a new team to provide in-depth and dedicated SDK support.

In the meantime, we'll be operating on limited capacity, meaning all pull requests will be evaluated on a best effort basis and will be limited to critical issues.

We'll communicate all relevant updates as we build this new team and support strategy in the coming months.

- [Installation](#add-a-dependency)
- [Resources](#resources)
- [Authorization](#authorization)
Expand All @@ -34,7 +42,7 @@ Add the project declaration to your `pom.xml`:
<dependency>
<groupId>io.intercom</groupId>
<artifactId>intercom-java</artifactId>
<version>2.8.1</version>
<version>2.8.2</version>
</dependency>
```

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

```groovy
dependencies {
implementation 'io.intercom:intercom-java:2.8.1'
implementation 'io.intercom:intercom-java:2.8.2'
}
```

Expand All @@ -67,7 +75,7 @@ resolvers += "mavenCentral" at "https://repo1.maven.org/maven2"
and add the project to your `libraryDependencies` in your `build.sbt`:

```scala
libraryDependencies += "io.intercom" % "intercom-java" % "2.8.1"
libraryDependencies += "io.intercom" % "intercom-java" % "2.8.2"
```

## 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.8.1
version: 2.8.2

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 @@ -17,7 +17,7 @@ static class Context {

private static volatile URI apiBaseURI = API_BASE_URI;

private static final String VERSION = "2.8.1";
private static final String VERSION = "2.8.2";

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

Expand Down