Skip to content

Commit

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

[bumpversion:file:build.gradle]

[bumpversion:file:README.md]

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

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

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:2.0.0'
compile 'com.nexmo:client:2.0.1'
}
```

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>2.0.0</version>
<version>2.0.1</version>
</dependency>
```

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

0 comments on commit c9201ab

Please sign in to comment.