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

### 2.7.0
This update includes the removal of an option which is not possible viua the API.
There was an option in the SDK to manually update the company sessions account but this is not possible vai the API.
It is doubbtful that it was being used but just in case we will make this release 2.7.0

#232 - Add the visitor endpoint functionality for the java SDK.
#233 - Remove option to set company session count since it returns error as it is not possible to set it

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

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

Expand Down