Skip to content

Commit e02a2d7

Browse files
authored
Merge pull request #296 from intercom/jn/bump-version
Version bump to 2.8.2
2 parents 5062451 + 3af8ea3 commit e02a2d7

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

CHANGES.md

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

3+
### 2.8.2
4+
5+
#### Add support for has_inbox_seat field (#272)
6+
Added mapping for the has_inbox_seat field to the Admin user model.
37
### 2.8.1
48

59
#### Add support for delivered_as field (#264)

README.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![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)
55
![Intercom API Version](https://img.shields.io/badge/Intercom%20API%20Version-1.3-blue)
66

7-
Java bindings for the [Intercom API](https://api.intercom.io/docs)
7+
> Java bindings for the [Intercom API](https://api.intercom.io/docs)
88
99
## Project Updates
1010

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

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

17+
### Maintenance
18+
19+
We're currently building a new team to provide in-depth and dedicated SDK support.
20+
21+
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.
22+
23+
We'll communicate all relevant updates as we build this new team and support strategy in the coming months.
24+
1725
- [Installation](#add-a-dependency)
1826
- [Resources](#resources)
1927
- [Authorization](#authorization)
@@ -34,7 +42,7 @@ Add the project declaration to your `pom.xml`:
3442
<dependency>
3543
<groupId>io.intercom</groupId>
3644
<artifactId>intercom-java</artifactId>
37-
<version>2.8.1</version>
45+
<version>2.8.2</version>
3846
</dependency>
3947
```
4048

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

5361
```groovy
5462
dependencies {
55-
implementation 'io.intercom:intercom-java:2.8.1'
63+
implementation 'io.intercom:intercom-java:2.8.2'
5664
}
5765
```
5866

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

6977
```scala
70-
libraryDependencies += "io.intercom" % "intercom-java" % "2.8.1"
78+
libraryDependencies += "io.intercom" % "intercom-java" % "2.8.2"
7179
```
7280

7381
## Resources

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 2.8.1
1+
version: 2.8.2
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
@@ -17,7 +17,7 @@ static class Context {
1717

1818
private static volatile URI apiBaseURI = API_BASE_URI;
1919

20-
private static final String VERSION = "2.8.1";
20+
private static final String VERSION = "2.8.2";
2121

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

0 commit comments

Comments
 (0)