Skip to content

Commit

Permalink
Prepare 0.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm committed Nov 30, 2023
1 parent 953fed7 commit 6a06420
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 8 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# CHANGELOG

## Version 0.4.0 (2023-11-30)
- Updates `kotlincrypto.core` to `0.4.0` [[#42]][42]
- Updates `kotlincrypto.hash` to `0.4.0` [[#42]][42]
- Updates `kotlin` to `1.9.21` [[#42]][42]
- Drops support for the following deprecated targets:
- `iosArm32`
- `watchosX86`
- `linuxArm32Hfp`
- `linuxMips32`
- `linuxMipsel32`
- `mingwX86`
- `wasm32`

## Version 0.3.0 (2023-06-28)
- Fixes JPMS split packages [[#40]][40]
- **API BREAKING CHANGES**
Expand Down Expand Up @@ -97,3 +110,4 @@
[38]: https://github.com/KotlinCrypto/MACs/pull/38
[40]: https://github.com/KotlinCrypto/MACs/pull/40
[41]: https://github.com/KotlinCrypto/MACs/pull/41
[42]: https://github.com/KotlinCrypto/MACs/pull/42
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ shown below.
// build.gradle.kts
dependencies {
// define the BOM and its version
implementation(platform("org.kotlincrypto.macs:bom:0.3.0"))
implementation(platform("org.kotlincrypto.macs:bom:0.4.0"))

// define artifacts without version

Expand All @@ -142,13 +142,13 @@ dependencies {
```

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

<!-- TAG_DEPENDENCIES -->
[badge-kotlin]: https://img.shields.io/badge/kotlin-1.8.21-blue.svg?logo=kotlin
[badge-core]: https://img.shields.io/badge/kotlincrypto.core-0.3.0-blue.svg
[badge-hash]: https://img.shields.io/badge/kotlincrypto.hash-0.3.0-blue.svg
[badge-kotlin]: https://img.shields.io/badge/kotlin-1.9.21-blue.svg?logo=kotlin
[badge-core]: https://img.shields.io/badge/kotlincrypto.core-0.4.0-blue.svg
[badge-hash]: https://img.shields.io/badge/kotlincrypto.hash-0.4.0-blue.svg

<!-- TAG_PLATFORMS -->
[badge-platform-android]: http://img.shields.io/badge/-android-6EDB8D.svg?style=flat
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ POM_DEVELOPER_ID=KotlinCrypto
POM_DEVELOPER_NAME=Kotlin Crypto
POM_DEVELOPER_URL=https://github.com/KotlinCrypto/

VERSION_NAME=0.3.1-SNAPSHOT
VERSION_NAME=0.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
# 0.1.0 = 00 01 00 99
# 1.1.0 = 01 01 00 99
VERSION_CODE=30199
VERSION_CODE=40099
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import io.matthewnelson.encoding.core.Encoder.Companion.encodeToString
import org.kotlincrypto.core.mac.Mac
import org.kotlincrypto.core.Updatable
import kotlin.test.assertEquals
import kotlin.test.assertNotEquals

abstract class MacUnitTest {

Expand Down

0 comments on commit 6a06420

Please sign in to comment.