Skip to content

Commit

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

## Version 1.1.2 (2022-05-14)
- Updates Kotlin-Components
- Support new targets:
- `iosArm32`
- `iosSimulatorArm64`
- `tvosSimulatorArm64`
- `watchosx86`
- `watchosSimulatorArm64`

## Version 1.1.1 (2022-05-08)
- Updates Kotlin-Components
- Bumps Kotlin `1.6.10` -> `1.6.21`
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0)

![android](https://camo.githubusercontent.com/b1d9ad56ab51c4ad1417e9a5ad2a8fe63bcc4755e584ec7defef83755c23f923/687474703a2f2f696d672e736869656c64732e696f2f62616467652f706c6174666f726d2d616e64726f69642d3645444238442e7376673f7374796c653d666c6174)
![apple-silicon](https://camo.githubusercontent.com/a92c841ffd377756a144d5723ff04ecec886953d40ac03baa738590514714921/687474703a2f2f696d672e736869656c64732e696f2f62616467652f737570706f72742d2535424170706c6553696c69636f6e2535442d3433424246462e7376673f7374796c653d666c6174)
![ios](https://camo.githubusercontent.com/1fec6f0d044c5e1d73656bfceed9a78fd4121b17e82a2705d2a47f6fd1f0e3e5/687474703a2f2f696d672e736869656c64732e696f2f62616467652f706c6174666f726d2d696f732d4344434443442e7376673f7374796c653d666c6174)
![jvm](https://camo.githubusercontent.com/700f5dcd442fd835875568c038ae5cd53518c80ae5a0cf12c7c5cf4743b5225b/687474703a2f2f696d672e736869656c64732e696f2f62616467652f706c6174666f726d2d6a766d2d4442343133442e7376673f7374796c653d666c6174)
![js](https://camo.githubusercontent.com/3e0a143e39915184b54b60a2ecedec75e801f396d34b5b366c94ec3604f7e6bd/687474703a2f2f696d672e736869656c64732e696f2f62616467652f706c6174666f726d2d6a732d4638444235442e7376673f7374796c653d666c6174)
Expand Down Expand Up @@ -32,7 +33,7 @@ A full list of `kotlin-components` projects can be found [HERE](https://kotlin-c
```kotlin
// build.gradle.kts
dependencies {
val encoding = "1.1.1"
val encoding = "1.1.2"
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 @@ -42,7 +43,7 @@ dependencies {
```groovy
// build.gradle
dependencies {
def encoding = "1.1.1"
def encoding = "1.1.2"
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 @@ -58,6 +59,7 @@ dependencies {
| 1.0.3 | 1.5.31 |
| 1.1.0 | 1.6.10 |
| 1.1.1 | 1.6.21 |
| 1.1.2 | 1.6.21 |

### Usage

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

kmpPublish {
setupRootProject(
versionName = "1.1.2-SNAPSHOT",
versionName = "1.1.2",
// 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 99b97f8

Please sign in to comment.