Skip to content

Commit 224cefb

Browse files
authored
bumping version to 2.7.0 (#237)
1 parent e3093db commit 224cefb

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGES.md

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

3+
### 2.7.0
4+
This update includes the removal of an option which is not possible viua the API.
5+
There was an option in the SDK to manually update the company sessions account but this is not possible vai the API.
6+
It is doubbtful that it was being used but just in case we will make this release 2.7.0
7+
8+
#232 - Add the visitor endpoint functionality for the java SDK.
9+
#233 - Remove option to set company session count since it returns error as it is not possible to set it
10+
311
#### 2.6.0
412
There a number of changed in this version so updating to 2.6
513
Highlights are adding more attributes to the company resource and new features on admin resource.

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.6.0</version>
42+
<version>2.7.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.6.0'
60+
compile 'io.intercom:intercom-java:2.7.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.6.0"
75+
libraryDependencies += "io.intercom" % "intercom-java" % "2.7.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.6.0
1+
version: 2.7.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.6.0";
28+
private static final String VERSION = "2.7.0";
2929

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

0 commit comments

Comments
 (0)