Skip to content

Commit

Permalink
Bump version: 4.2.1 → 4.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Crow committed Apr 25, 2019
1 parent ad48996 commit 65048f5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[bumpversion]
commit = True
tag = True
current_version = 4.2.1
current_version = 4.3.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
serialize =
{major}.{minor}.{patch}

[bumpversion:file:build.gradle]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ For Gradle 3.4 or Higher:

```groovy
dependencies {
implementation 'com.nexmo:client:4.2.1'
implementation 'com.nexmo:client:4.3.0'
}
```

For older versions:

```groovy
dependencies {
compile 'com.nexmo:client:4.2.1'
compile 'com.nexmo:client:4.3.0'
}
```

Expand All @@ -52,7 +52,7 @@ Add the following to the correct place in your project's POM file:
<dependency>
<groupId>com.nexmo</groupId>
<artifactId>client</artifactId>
<version>4.2.1</version>
<version>4.3.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 @@ -20,7 +20,7 @@ apply plugin: 'eclipse'

group = "com.nexmo"
archivesBaseName = "client"
version = "4.2.1"
version = "4.3.0"

sourceCompatibility = "1.8"
targetCompatibility = "1.8"
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 = "4.2.1";
private static final String CLIENT_VERSION = "4.3.0";
private static final String JAVA_VERSION = System.getProperty("java.version");

private AuthCollection authCollection;
Expand Down

0 comments on commit 65048f5

Please sign in to comment.