Skip to content

Commit acd4c99

Browse files
committed
Prepare 2.4.0 release
1 parent ccdcf46 commit acd4c99

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## Version 2.4.0 (2024-02-14)
4+
- Update dependencies [[#166]][166]:
5+
- Kotlin `1.9.24` -> `2.1.10`
6+
37
## Version 2.3.1 (2024-12-18)
48
- Fixes performance issues introduced in `2.3.0` [[#162]][162]:
59
- Deprecates the following which were introduced in `2.3.0`:
@@ -230,4 +234,5 @@
230234
[158]: https://github.com/05nelsonm/encoding/pull/158
231235
[160]: https://github.com/05nelsonm/encoding/pull/160
232236
[162]: https://github.com/05nelsonm/encoding/pull/162
237+
[166]: https://github.com/05nelsonm/encoding/pull/166
233238
[MIGRATION]: https://github.com/05nelsonm/encoding/blob/master/MIGRATION.md

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ See [sample project](sample/README.md)
271271
```kotlin
272272
// build.gradle.kts
273273
dependencies {
274-
val encoding = "2.3.1"
274+
val encoding = "2.4.0"
275275
implementation("io.matthewnelson.encoding:base16:$encoding")
276276
implementation("io.matthewnelson.encoding:base32:$encoding")
277277
implementation("io.matthewnelson.encoding:base64:$encoding")
@@ -288,7 +288,7 @@ Alternatively, you can use the BOM.
288288
// build.gradle.kts
289289
dependencies {
290290
// define the BOM and its version
291-
implementation(platform("io.matthewnelson.encoding:bom:2.3.1"))
291+
implementation(platform("io.matthewnelson.encoding:bom:2.4.0"))
292292

293293
// define artifacts without version
294294
implementation("io.matthewnelson.encoding:base16")
@@ -301,7 +301,7 @@ dependencies {
301301
```
302302

303303
<!-- TAG_VERSION -->
304-
[badge-latest]: https://img.shields.io/badge/latest--release-2.3.1-blue.svg?style=flat
304+
[badge-latest]: https://img.shields.io/badge/latest--release-2.4.0-blue.svg?style=flat
305305
[badge-license]: https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
306306

307307
<!-- TAG_DEPENDENCIES -->

RELEASING.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,4 @@
22

33
See [KotlinCrypto/documentation/RELEASING.md][url-kotlincrypto-releasing]
44

5-
Additionally, publish dokka documentation updates
6-
```bash
7-
./gh-pages/publish.sh
8-
```
9-
105
[url-kotlincrypto-releasing]: https://github.com/KotlinCrypto/documentation/blob/master/RELEASING.md

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ POM_DEVELOPER_ID=05nelsonm
3030
POM_DEVELOPER_NAME=Matthew Nelson
3131
POM_DEVELOPER_URL=https://github.com/05nelsonm/
3232

33-
VERSION_NAME=2.4.0-SNAPSHOT
33+
VERSION_NAME=2.4.0
3434
# 0.1.0-alpha01 = 00 01 00 11
3535
# 0.1.0-beta01 = 00 01 00 21
3636
# 0.1.0-rc01 = 00 01 00 31

0 commit comments

Comments
 (0)