Skip to content

Commit

Permalink
Prepare 1.2.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm committed Jan 31, 2023
1 parent b1bf79d commit 41d70db
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGELOG

## Version 1.2.1 (2023-01-31)
- Fixes `Base32` encoding
- Updates `kotlin-components` submodule
- Publication support updates

## Version 1.2.0 (2023-01-27)
- Fixes `base16` and `base32` decoding case sensitivity.
- Previously, encoded data had to be all `uppercase` for decoding to work. This
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ println(sb.toString())
```kotlin
// build.gradle.kts
dependencies {
val encoding = "1.2.0"
val encoding = "1.2.1"
implementation("io.matthewnelson.kotlin-components:encoding-base16:$encoding")
implementation("io.matthewnelson.kotlin-components:encoding-base32:$encoding")
implementation("io.matthewnelson.kotlin-components:encoding-base64:$encoding")
Expand All @@ -246,7 +246,7 @@ dependencies {
```groovy
// build.gradle
dependencies {
def encoding = "1.2.0"
def encoding = "1.2.1"
implementation "io.matthewnelson.kotlin-components:encoding-base16:$encoding"
implementation "io.matthewnelson.kotlin-components:encoding-base32:$encoding"
implementation "io.matthewnelson.kotlin-components:encoding-base64:$encoding"
Expand All @@ -264,6 +264,7 @@ dependencies {

| encoding | kotlin |
|:--------:|:------:|
| 1.2.1 | 1.8.0 |
| 1.2.0 | 1.8.0 |
| 1.1.5 | 1.8.0 |
| 1.1.4 | 1.7.20 |
Expand Down Expand Up @@ -295,7 +296,7 @@ $ git pull --recurse-submodules
```

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

<!-- TAG_DEPENDENCIES -->
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ plugins {

kmpPublish {
setupRootProject(
versionName = "1.2.1-SNAPSHOT",
versionName = "1.2.1",
// 1.0.0-alpha1 == 01_00_00_11
// 1.0.0-alpha2 == 01_00_00_12
// 1.0.0-beta1 == 01_00_00_21
Expand Down

0 comments on commit 41d70db

Please sign in to comment.