Skip to content

Commit

Permalink
Bump version: 2.0.1 → 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
judy2k committed May 4, 2017
1 parent aca609c commit e3270af
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
9 changes: 1 addition & 8 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
[bumpversion]
commit = True
tag = True
current_version = 2.0.1
current_version = 2.0.2
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}-{release}
{major}.{minor}.{patch}

[bumpversion:file:build.gradle]
Expand All @@ -13,9 +12,3 @@ serialize =

[bumpversion:file:src/main/java/com/nexmo/client/HttpWrapper.java]

[bumpversion:part:release]
optional_value = ignoreme
values =
prerelease
ignoreme

2 changes: 1 addition & 1 deletion 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 = "2.0.1"
version = "2.0.2"
sourceCompatibility = "1.7"
targetCompatibility = "1.7"

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/2.0.1")
.setUserAgent("nexmo-java/2.0.2")
.setDefaultRequestConfig(requestConfig)
.build();
}
Expand Down

0 comments on commit e3270af

Please sign in to comment.