Skip to content

Commit

Permalink
Bump version: 3.1.0 → 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
judy2k committed Nov 30, 2017
1 parent 1bd9b5f commit e29268f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = True
current_version = 3.1.0
current_version = 3.2.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ repositories {
}
dependencies {
compile 'com.nexmo:client:3.1.0'
compile 'com.nexmo:client:3.2.0'
}
```

Expand All @@ -40,7 +40,7 @@ Add the following to the correct place in your project's POM file:
<dependency>
<groupId>com.nexmo</groupId>
<artifactId>client</artifactId>
<version>3.1.0</version>
<version>3.2.0</version>
</dependency>
```

Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ apply plugin: 'eclipse'

group = "com.nexmo"
archivesBaseName = "client"
version = "3.1.0"
version = "3.2.0"
sourceCompatibility = "1.7"
targetCompatibility = "1.7"

Expand All @@ -36,11 +36,11 @@ dependencies {
compile 'org.apache.httpcomponents:httpclient:4.5'
compile 'commons-io:commons-io:2.5'
compile 'org.apache.commons:commons-lang3:3.5'
compileOnly 'javax.servlet:javax.servlet-api:3.1.0'
compileOnly 'javax.servlet:javax.servlet-api:3.2.0'
compile 'com.fasterxml.jackson.core:jackson-databind:2.8.4'
compile 'com.auth0:java-jwt:2.2.1'

testCompile "javax.servlet:javax.servlet-api:3.1.0"
testCompile "javax.servlet:javax.servlet-api:3.2.0"
testCompile 'junit:junit:4.4'
testCompile "org.mockito:mockito-core:2.7.1"
testCompile 'org.hamcrest:hamcrest-all:1.3'
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/nexmo/client/HttpWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ protected HttpClient createHttpClient() {

return HttpClientBuilder.create()
.setConnectionManager(connectionManager)
.setUserAgent("nexmo-java/3.1.0")
.setUserAgent("nexmo-java/3.2.0")
.setDefaultRequestConfig(requestConfig)
.build();
}
Expand Down

0 comments on commit e29268f

Please sign in to comment.