Skip to content

Commit 6a06420

Browse files
committed
Prepare 0.4.0 release
1 parent 953fed7 commit 6a06420

File tree

4 files changed

+21
-8
lines changed

4 files changed

+21
-8
lines changed

CHANGELOG.md

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

3+
## Version 0.4.0 (2023-11-30)
4+
- Updates `kotlincrypto.core` to `0.4.0` [[#42]][42]
5+
- Updates `kotlincrypto.hash` to `0.4.0` [[#42]][42]
6+
- Updates `kotlin` to `1.9.21` [[#42]][42]
7+
- Drops support for the following deprecated targets:
8+
- `iosArm32`
9+
- `watchosX86`
10+
- `linuxArm32Hfp`
11+
- `linuxMips32`
12+
- `linuxMipsel32`
13+
- `mingwX86`
14+
- `wasm32`
15+
316
## Version 0.3.0 (2023-06-28)
417
- Fixes JPMS split packages [[#40]][40]
518
- **API BREAKING CHANGES**
@@ -97,3 +110,4 @@
97110
[38]: https://github.com/KotlinCrypto/MACs/pull/38
98111
[40]: https://github.com/KotlinCrypto/MACs/pull/40
99112
[41]: https://github.com/KotlinCrypto/MACs/pull/41
113+
[42]: https://github.com/KotlinCrypto/MACs/pull/42

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ shown below.
118118
// build.gradle.kts
119119
dependencies {
120120
// define the BOM and its version
121-
implementation(platform("org.kotlincrypto.macs:bom:0.3.0"))
121+
implementation(platform("org.kotlincrypto.macs:bom:0.4.0"))
122122

123123
// define artifacts without version
124124

@@ -142,13 +142,13 @@ dependencies {
142142
```
143143

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

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

153153
<!-- TAG_PLATFORMS -->
154154
[badge-platform-android]: http://img.shields.io/badge/-android-6EDB8D.svg?style=flat

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ POM_DEVELOPER_ID=KotlinCrypto
3030
POM_DEVELOPER_NAME=Kotlin Crypto
3131
POM_DEVELOPER_URL=https://github.com/KotlinCrypto/
3232

33-
VERSION_NAME=0.3.1-SNAPSHOT
33+
VERSION_NAME=0.4.0
3434
# 0.1.0-alpha01 = 00 01 00 11
3535
# 0.1.0-beta01 = 00 01 00 21
3636
# 0.1.0-rc01 = 00 01 00 31
3737
# 0.1.0 = 00 01 00 99
3838
# 1.1.0 = 01 01 00 99
39-
VERSION_CODE=30199
39+
VERSION_CODE=40099

tools/testing/src/commonMain/kotlin/org/kotlincrypto/macs/MacUnitTest.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ import io.matthewnelson.encoding.core.Encoder.Companion.encodeToString
2121
import org.kotlincrypto.core.mac.Mac
2222
import org.kotlincrypto.core.Updatable
2323
import kotlin.test.assertEquals
24-
import kotlin.test.assertNotEquals
2524

2625
abstract class MacUnitTest {
2726

0 commit comments

Comments
 (0)