Skip to content

Commit 5a060d8

Browse files
committed
build: Bump Kotlin lib version
1 parent c754c05 commit 5a060d8

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed

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+
## [0.9.0] - 2024-08-2?
8+
9+
### Added
10+
- Application API
11+
712
## [0.8.0] - 2024-08-09
813

914
### Added

pom.xml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.vonage</groupId>
77
<artifactId>server-sdk-kotlin</artifactId>
8-
<version>0.8.0</version>
8+
<version>0.9.0</version>
99

1010
<name>Vonage Kotlin Server SDK</name>
1111
<description>Kotlin client for Vonage APIs</description>
@@ -47,24 +47,25 @@
4747
<kotlin.compiler.languageVersion>2.0</kotlin.compiler.languageVersion>
4848
<kotlin.compiler.apiVersion>2.0</kotlin.compiler.apiVersion>
4949
<kotlin.compiler.jvmTarget>1.8</kotlin.compiler.jvmTarget>
50+
<kotlin.lib.version>2.0.10</kotlin.lib.version>
5051
<java.version>8</java.version>
5152
</properties>
5253

5354
<dependencies>
54-
<dependency>
55-
<groupId>org.jetbrains.kotlin</groupId>
56-
<artifactId>kotlin-stdlib</artifactId>
57-
<version>2.0.0</version>
58-
</dependency>
5955
<dependency>
6056
<groupId>com.vonage</groupId>
6157
<artifactId>server-sdk</artifactId>
6258
<version>8.10.0</version>
6359
</dependency>
60+
<dependency>
61+
<groupId>org.jetbrains.kotlin</groupId>
62+
<artifactId>kotlin-stdlib</artifactId>
63+
<version>${kotlin.lib.version}</version>
64+
</dependency>
6465
<dependency>
6566
<groupId>org.jetbrains.kotlin</groupId>
6667
<artifactId>kotlin-test-junit5</artifactId>
67-
<version>2.0.0</version>
68+
<version>${kotlin.lib.version}</version>
6869
<scope>test</scope>
6970
</dependency>
7071
<dependency>
@@ -206,9 +207,9 @@
206207
</executions>
207208
</plugin>
208209
<plugin>
209-
<artifactId>kotlin-maven-plugin</artifactId>
210210
<groupId>org.jetbrains.kotlin</groupId>
211-
<version>2.0.0</version>
211+
<artifactId>kotlin-maven-plugin</artifactId>
212+
<version>${kotlin.lib.version}</version>
212213
<extensions>true</extensions>
213214
</plugin>
214215
</plugins>

0 commit comments

Comments
 (0)