Skip to content

Commit d41ba0e

Browse files
authored
chore: Bump version & changelog (#517)
* Update changelog * Bump version: v8.2.0 → v8.3.0 * Bump commons-codec version * Bump JUnit version
1 parent b0d402c commit d41ba0e

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
22
commit = True
33
tag = False
4-
current_version = v8.2.0
4+
current_version = v8.3.0
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
66
serialize =
77
{major}.{minor}.{patch}-{release}{build}

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
# [8.3.0] - 2024-02-12
8+
- Made `from` parameter mandatory in Verify v2 WhatsApp workflows
9+
- Added `com.vonage.client.sms.MessageEvent` for SMS webhooks
10+
- Deprecated SMS classes in `com.vonage.client.incoming` package
11+
712
# [8.2.0] - 2024-01-29
813
- Added Number Insight v2 API implementation
914
- New webhook deserialisation POJOs for Voice: `AnswerWebhook` and `EventWebhook`

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ See all of our SDKs and integrations on the [Vonage Developer portal](https://de
5151

5252
## Installation
5353

54-
Releases are published to [Maven Central](https://central.sonatype.com/artifact/com.vonage/server-sdk/8.2.0/snippets).
54+
Releases are published to [Maven Central](https://central.sonatype.com/artifact/com.vonage/server-sdk/8.3.0/snippets).
5555
Instructions for your build system can be found in the snippets section.
56-
They're also available from [here](https://mvnrepository.com/artifact/com.vonage/server-sdk/8.2.0).
56+
They're also available from [here](https://mvnrepository.com/artifact/com.vonage/server-sdk/8.3.0).
5757
Release notes can be found in the [changelog](CHANGELOG.md).
5858

5959
### Build It Yourself

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99

1010
group = "com.vonage"
1111
archivesBaseName = "server-sdk"
12-
version = "8.2.0"
12+
version = "8.3.0"
1313

1414
ext.githubPath = 'Vonage/vonage-java-sdk'
1515

@@ -34,9 +34,9 @@ compileTestJava {
3434
dependencies {
3535
def jacksonVersion = '2.16.1'
3636
def httpclientVersion = '4.5.14'
37-
def junitVersion = '5.10.1'
37+
def junitVersion = '5.10.2'
3838

39-
implementation "commons-codec:commons-codec:1.16.0"
39+
implementation "commons-codec:commons-codec:1.16.1"
4040
implementation 'org.apache.commons:commons-lang3:3.14.0'
4141
implementation "org.apache.httpcomponents:httpclient:$httpclientVersion"
4242
implementation "org.apache.httpcomponents:httpmime:$httpclientVersion"

src/main/java/com/vonage/client/HttpWrapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
*/
3131
public class HttpWrapper {
3232
private static final String CLIENT_NAME = "vonage-java-sdk";
33-
private static final String CLIENT_VERSION = "8.2.0";
33+
private static final String CLIENT_VERSION = "8.3.0";
3434
private static final String JAVA_VERSION = System.getProperty("java.version");
3535
private static final String USER_AGENT = String.format("%s/%s java/%s", CLIENT_NAME, CLIENT_VERSION, JAVA_VERSION);
3636

0 commit comments

Comments
 (0)