Skip to content

Commit

Permalink
chore: Bump version & changelog (#517)
Browse files Browse the repository at this point in the history
* Update changelog

* Bump version: v8.2.0 → v8.3.0

* Bump commons-codec version

* Bump JUnit version
  • Loading branch information
SMadani authored Feb 12, 2024
1 parent b0d402c commit d41ba0e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 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.2.0
current_version = v8.3.0
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

# [8.3.0] - 2024-02-12
- Made `from` parameter mandatory in Verify v2 WhatsApp workflows
- Added `com.vonage.client.sms.MessageEvent` for SMS webhooks
- Deprecated SMS classes in `com.vonage.client.incoming` package

# [8.2.0] - 2024-01-29
- Added Number Insight v2 API implementation
- New webhook deserialisation POJOs for Voice: `AnswerWebhook` and `EventWebhook`
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ See all of our SDKs and integrations on the [Vonage Developer portal](https://de

## Installation

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

### Build It Yourself
Expand Down
6 changes: 3 additions & 3 deletions 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.2.0"
version = "8.3.0"

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

Expand All @@ -34,9 +34,9 @@ compileTestJava {
dependencies {
def jacksonVersion = '2.16.1'
def httpclientVersion = '4.5.14'
def junitVersion = '5.10.1'
def junitVersion = '5.10.2'

implementation "commons-codec:commons-codec:1.16.0"
implementation "commons-codec:commons-codec:1.16.1"
implementation 'org.apache.commons:commons-lang3:3.14.0'
implementation "org.apache.httpcomponents:httpclient:$httpclientVersion"
implementation "org.apache.httpcomponents:httpmime:$httpclientVersion"
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.2.0";
private static final String CLIENT_VERSION = "8.3.0";
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 d41ba0e

Please sign in to comment.