Skip to content

Commit

Permalink
Prepare 2.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm committed Mar 10, 2024
1 parent dbeff6b commit 5a6ab17
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# CHANGELOG

## Version 2.2.0 (2024-03-10)
- Updates dependencies
- Kotlin `1.9.21` -> `1.9.23`
- Adds support for Java9 JPMS via Multi-Release jars [[#139]][139]
- Adds experimental support for the following targets [[#140]][140]:
- `wasmJs`
- `wasmWasi`
- Deprecates `InternalEncodingApi` annotation [[#142]][142]

## Version 2.1.0 (2023-11-30)
- Updates dependencies
- Kotlin `1.8.21` -> `1.9.21`
Expand Down Expand Up @@ -169,4 +178,7 @@
[127]: https://github.com/05nelsonm/encoding/pull/127
[130]: https://github.com/05nelsonm/encoding/pull/130
[132]: https://github.com/05nelsonm/encoding/pull/132
[139]: https://github.com/05nelsonm/encoding/pull/139
[140]: https://github.com/05nelsonm/encoding/pull/140
[142]: https://github.com/05nelsonm/encoding/pull/142
[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 @@ -278,7 +278,7 @@ See [sample project](sample/README.md)
```kotlin
// build.gradle.kts
dependencies {
val encoding = "2.1.0"
val encoding = "2.2.0"
implementation("io.matthewnelson.encoding:base16:$encoding")
implementation("io.matthewnelson.encoding:base32:$encoding")
implementation("io.matthewnelson.encoding:base64:$encoding")
Expand All @@ -295,7 +295,7 @@ Alternatively, you can use the BOM.
// build.gradle.kts
dependencies {
// define the BOM and its version
implementation(platform("io.matthewnelson.encoding:bom:2.1.0"))
implementation(platform("io.matthewnelson.encoding:bom:2.2.0"))

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

<!-- TAG_VERSION -->
[badge-latest-release]: https://img.shields.io/badge/latest--release-2.1.0-blue.svg?style=flat
[badge-latest-release]: https://img.shields.io/badge/latest--release-2.2.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
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ POM_DEVELOPER_ID=05nelsonm
POM_DEVELOPER_NAME=Matthew Nelson
POM_DEVELOPER_URL=https://github.com/05nelsonm/

VERSION_NAME=2.1.1-SNAPSHOT
VERSION_NAME=2.2.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
# 0.1.0 = 00 01 00 99
# 1.1.0 = 01 01 00 99
VERSION_CODE=2010199
VERSION_CODE=2020099

0 comments on commit 5a6ab17

Please sign in to comment.