Skip to content

Commit

Permalink
Prepare 2.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm committed Feb 14, 2025
1 parent ccdcf46 commit acd4c99
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## Version 2.4.0 (2024-02-14)
- Update dependencies [[#166]][166]:
- Kotlin `1.9.24` -> `2.1.10`

## Version 2.3.1 (2024-12-18)
- Fixes performance issues introduced in `2.3.0` [[#162]][162]:
- Deprecates the following which were introduced in `2.3.0`:
Expand Down Expand Up @@ -230,4 +234,5 @@
[158]: https://github.com/05nelsonm/encoding/pull/158
[160]: https://github.com/05nelsonm/encoding/pull/160
[162]: https://github.com/05nelsonm/encoding/pull/162
[166]: https://github.com/05nelsonm/encoding/pull/166
[MIGRATION]: https://github.com/05nelsonm/encoding/blob/master/MIGRATION.md
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ See [sample project](sample/README.md)
```kotlin
// build.gradle.kts
dependencies {
val encoding = "2.3.1"
val encoding = "2.4.0"
implementation("io.matthewnelson.encoding:base16:$encoding")
implementation("io.matthewnelson.encoding:base32:$encoding")
implementation("io.matthewnelson.encoding:base64:$encoding")
Expand All @@ -288,7 +288,7 @@ Alternatively, you can use the BOM.
// build.gradle.kts
dependencies {
// define the BOM and its version
implementation(platform("io.matthewnelson.encoding:bom:2.3.1"))
implementation(platform("io.matthewnelson.encoding:bom:2.4.0"))

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

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

<!-- TAG_DEPENDENCIES -->
Expand Down
5 changes: 0 additions & 5 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,4 @@

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

Additionally, publish dokka documentation updates
```bash
./gh-pages/publish.sh
```

[url-kotlincrypto-releasing]: https://github.com/KotlinCrypto/documentation/blob/master/RELEASING.md
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ POM_DEVELOPER_ID=05nelsonm
POM_DEVELOPER_NAME=Matthew Nelson
POM_DEVELOPER_URL=https://github.com/05nelsonm/

VERSION_NAME=2.4.0-SNAPSHOT
VERSION_NAME=2.4.0
# 0.1.0-alpha01 = 00 01 00 11
# 0.1.0-beta01 = 00 01 00 21
# 0.1.0-rc01 = 00 01 00 31
Expand Down

0 comments on commit acd4c99

Please sign in to comment.