Skip to content

Commit

Permalink
Bump version: v8.0.0-beta2 → v8.0.0-beta3
Browse files Browse the repository at this point in the history
  • Loading branch information
SMadani committed Jan 11, 2023
1 parent 2357b2b commit ba482fb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 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 = False
current_version = v8.0.0-beta2
current_version = v8.0.0-beta3
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
serialize =
{major}.{minor}.{patch}-{release}{build}
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ For Gradle 3.4 or Higher:

```groovy
dependencies {
implementation 'com.vonage:server-sdk:8.0.0-beta2'
implementation 'com.vonage:server-sdk:8.0.0-beta3'
}
```

For older versions:

```groovy
dependencies {
compile 'com.vonage:server-sdk:8.0.0-beta2'
compile 'com.vonage:server-sdk:8.0.0-beta3'
}
```

Expand All @@ -61,7 +61,7 @@ Add the following to the correct place in your project's POM file:
<dependency>
<groupId>com.vonage</groupId>
<artifactId>server-sdk</artifactId>
<version>8.0.0-beta2</version>
<version>8.0.0-beta3</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {

group = "com.vonage"
archivesBaseName = "server-sdk"
version = "8.0.0-beta2"
version = "8.0.0-beta3"
sourceCompatibility = "1.8"
targetCompatibility = "1.8"

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/vonage/client/HttpWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
*/
public class HttpWrapper {
private static final String CLIENT_NAME = "vonage-java-sdk";
private static final String CLIENT_VERSION = "8.0.0-beta2";
private static final String CLIENT_VERSION = "8.0.0-beta3";
private static final String JAVA_VERSION = System.getProperty("java.version");
private static final String USER_AGENT = String.format("%s/%s java/%s", CLIENT_NAME, CLIENT_VERSION, JAVA_VERSION);

Expand Down

0 comments on commit ba482fb

Please sign in to comment.