Skip to content

Commit 5a6ab17

Browse files
committed
Prepare 2.2.0 release
1 parent dbeff6b commit 5a6ab17

3 files changed

Lines changed: 17 additions & 5 deletions

File tree

CHANGELOG.md

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

3+
## Version 2.2.0 (2024-03-10)
4+
- Updates dependencies
5+
- Kotlin `1.9.21` -> `1.9.23`
6+
- Adds support for Java9 JPMS via Multi-Release jars [[#139]][139]
7+
- Adds experimental support for the following targets [[#140]][140]:
8+
- `wasmJs`
9+
- `wasmWasi`
10+
- Deprecates `InternalEncodingApi` annotation [[#142]][142]
11+
312
## Version 2.1.0 (2023-11-30)
413
- Updates dependencies
514
- Kotlin `1.8.21` -> `1.9.21`
@@ -169,4 +178,7 @@
169178
[127]: https://github.com/05nelsonm/encoding/pull/127
170179
[130]: https://github.com/05nelsonm/encoding/pull/130
171180
[132]: https://github.com/05nelsonm/encoding/pull/132
181+
[139]: https://github.com/05nelsonm/encoding/pull/139
182+
[140]: https://github.com/05nelsonm/encoding/pull/140
183+
[142]: https://github.com/05nelsonm/encoding/pull/142
172184
[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
@@ -278,7 +278,7 @@ See [sample project](sample/README.md)
278278
```kotlin
279279
// build.gradle.kts
280280
dependencies {
281-
val encoding = "2.1.0"
281+
val encoding = "2.2.0"
282282
implementation("io.matthewnelson.encoding:base16:$encoding")
283283
implementation("io.matthewnelson.encoding:base32:$encoding")
284284
implementation("io.matthewnelson.encoding:base64:$encoding")
@@ -295,7 +295,7 @@ Alternatively, you can use the BOM.
295295
// build.gradle.kts
296296
dependencies {
297297
// define the BOM and its version
298-
implementation(platform("io.matthewnelson.encoding:bom:2.1.0"))
298+
implementation(platform("io.matthewnelson.encoding:bom:2.2.0"))
299299

300300
// define artifacts without version
301301
implementation("io.matthewnelson.encoding:base16")
@@ -308,7 +308,7 @@ dependencies {
308308
```
309309

310310
<!-- TAG_VERSION -->
311-
[badge-latest-release]: https://img.shields.io/badge/latest--release-2.1.0-blue.svg?style=flat
311+
[badge-latest-release]: https://img.shields.io/badge/latest--release-2.2.0-blue.svg?style=flat
312312
[badge-license]: https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
313313

314314
<!-- TAG_DEPENDENCIES -->

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ POM_DEVELOPER_ID=05nelsonm
2727
POM_DEVELOPER_NAME=Matthew Nelson
2828
POM_DEVELOPER_URL=https://github.com/05nelsonm/
2929

30-
VERSION_NAME=2.1.1-SNAPSHOT
30+
VERSION_NAME=2.2.0
3131
# 0.1.0-alpha01 = 00 01 00 11
3232
# 0.1.0-beta01 = 00 01 00 21
3333
# 0.1.0-rc01 = 00 01 00 31
3434
# 0.1.0 = 00 01 00 99
3535
# 1.1.0 = 01 01 00 99
36-
VERSION_CODE=2010199
36+
VERSION_CODE=2020099

0 commit comments

Comments
 (0)