Skip to content

Commit 391d0cd

Browse files
committed
Prepare 2.5.0 release
1 parent f0d234d commit 391d0cd

3 files changed

Lines changed: 12 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# CHANGELOG
22

3-
## Version 2.4.0 (2024-02-14)
3+
## Version 2.5.0 (2025-09-19)
4+
- Update dependencies [[#167]][167]:
5+
- Kotlin `2.1.10` -> `2.2.20`
6+
- Lower supported `KotlinVersion` to `1.8` [[#168]][168]
7+
8+
## Version 2.4.0 (2025-02-14)
49
- Update dependencies [[#166]][166]:
510
- Kotlin `1.9.24` -> `2.1.10`
611

@@ -235,4 +240,6 @@
235240
[160]: https://github.com/05nelsonm/encoding/pull/160
236241
[162]: https://github.com/05nelsonm/encoding/pull/162
237242
[166]: https://github.com/05nelsonm/encoding/pull/166
243+
[167]: https://github.com/05nelsonm/encoding/pull/167
244+
[168]: https://github.com/05nelsonm/encoding/pull/168
238245
[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
@@ -269,7 +269,7 @@ See [sample project](sample/README.md)
269269
```kotlin
270270
// build.gradle.kts
271271
dependencies {
272-
val encoding = "2.4.0"
272+
val encoding = "2.5.0"
273273
implementation("io.matthewnelson.encoding:base16:$encoding")
274274
implementation("io.matthewnelson.encoding:base32:$encoding")
275275
implementation("io.matthewnelson.encoding:base64:$encoding")
@@ -286,7 +286,7 @@ Alternatively, you can use the BOM.
286286
// build.gradle.kts
287287
dependencies {
288288
// define the BOM and its version
289-
implementation(project.dependencies.platform("io.matthewnelson.encoding:bom:2.4.0"))
289+
implementation(project.dependencies.platform("io.matthewnelson.encoding:bom:2.5.0"))
290290

291291
// define artifacts without version
292292
implementation("io.matthewnelson.encoding:base16")
@@ -299,7 +299,7 @@ dependencies {
299299
```
300300

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

305305
<!-- TAG_DEPENDENCIES -->

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.5.0-SNAPSHOT
33+
VERSION_NAME=2.5.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)