Skip to content

Commit

Permalink
Bump version: 3.7.0 → 3.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Crow committed Sep 19, 2018
1 parent c517e24 commit fb9ed50
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 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.7.0
current_version = 3.8.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.7.0'
compile 'com.nexmo:client:3.8.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.7.0</version>
<version>3.8.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ apply plugin: 'eclipse'

group = "com.nexmo"
archivesBaseName = "client"
version = "3.7.0"
version = "3.8.0"

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 @@ -37,7 +37,7 @@
*/
public class HttpWrapper {
private static final String CLIENT_NAME = "nexmo-java";
private static final String CLIENT_VERSION = "3.7.0";
private static final String CLIENT_VERSION = "3.8.0";
private static final String JAVA_VERSION = System.getProperty("java.version");

private AuthCollection authCollection;
Expand Down

0 comments on commit fb9ed50

Please sign in to comment.