Skip to content

Commit d85acdd

Browse files
authored
Merge pull request #225 from intercom/jonny/bump_version
Bumping to 2.5.2
2 parents 5ceb3b7 + 23576ea commit d85acdd

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGES.md

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

3+
#### 2.5.2
4+
- Adding tagging abilities to Contacts.
5+
36
#### 2.5.1
47
- Adding new release due to issues with previous.
58

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ To use the client, you can add the jcenter repository to your dependencies.
2121

2222
### Maven
2323

24+
2425
Add jcenter to your repositories in `pom.xml` or `settings.xml`:
2526

2627
```xml
@@ -38,7 +39,7 @@ and add the project declaration to your `pom.xml`:
3839
<dependency>
3940
<groupId>io.intercom</groupId>
4041
<artifactId>intercom-java</artifactId>
41-
<version>2.5.1</version>
42+
<version>2.5.2</version>
4243
</dependency>
4344
```
4445

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

5758
```groovy
5859
dependencies {
59-
compile 'io.intercom:intercom-java:2.5.1'
60+
compile 'io.intercom:intercom-java:2.5.2'
6061
}
6162
```
6263

@@ -71,9 +72,10 @@ resolvers += "jcenter" at "http://jcenter.bintray.com"
7172
and add the project to your `libraryDependencies` in your `build.sbt`:
7273

7374
```scala
74-
libraryDependencies += "io.intercom" % "intercom-java" % "2.5.1"
75+
libraryDependencies += "io.intercom" % "intercom-java" % "2.5.2"
7576
```
7677

78+
7779
## Resources
7880

7981
Resources this API supports:

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 2.5.1
1+
version: 2.5.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
@@ -15,7 +15,7 @@ enum AuthKeyType {
1515
TOKEN
1616
}
1717

18-
private static final String VERSION = "2.5.1";
18+
private static final String VERSION = "2.5.2";
1919

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

0 commit comments

Comments
 (0)