File tree Expand file tree Collapse file tree 4 files changed +21
-8
lines changed
tools/testing/src/commonMain/kotlin/org/kotlincrypto/macs Expand file tree Collapse file tree 4 files changed +21
-8
lines changed Original file line number Diff line number Diff line change 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**
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
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ shown below.
118118// build.gradle.kts
119119dependencies {
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
Original file line number Diff line number Diff line change @@ -30,10 +30,10 @@ POM_DEVELOPER_ID=KotlinCrypto
3030POM_DEVELOPER_NAME =Kotlin Crypto
3131POM_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
Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ import io.matthewnelson.encoding.core.Encoder.Companion.encodeToString
2121import org.kotlincrypto.core.mac.Mac
2222import org.kotlincrypto.core.Updatable
2323import kotlin.test.assertEquals
24- import kotlin.test.assertNotEquals
2524
2625abstract class MacUnitTest {
2726
You can’t perform that action at this time.
0 commit comments