Skip to content

Commit 472a49e

Browse files
committed
Prepare 0.8.0 release
1 parent 236f5b6 commit 472a49e

File tree

4 files changed

+18
-10
lines changed

4 files changed

+18
-10
lines changed

CHANGELOG.md

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

3+
## Version 0.8.0 (2025-09-19)
4+
- Updates `kotlin` to `2.2.20` [[#79]][79]
5+
- Updates `kotlincrypto.core` to `0.8.0` [[#79]][79]
6+
- Updates `kotlincrypto.hash` to `0.8.0` [[#79]][79]
7+
- Lower supported `KotlinVersion` to `1.8` [[#80]][80]
8+
39
## Version 0.7.1 (2025-08-25)
410
- Updates `kotlin` to `2.2.10` [[#78]][78]
511
- Updates `kotlincrypto.core` to `0.7.1`
@@ -203,4 +209,6 @@
203209
[74]: https://github.com/KotlinCrypto/MACs/pull/74
204210
[76]: https://github.com/KotlinCrypto/MACs/pull/76
205211
[78]: https://github.com/KotlinCrypto/MACs/pull/78
212+
[79]: https://github.com/KotlinCrypto/MACs/pull/79
213+
[80]: https://github.com/KotlinCrypto/MACs/pull/80
206214
[124-core]: https://github.com/KotlinCrypto/core/pull/124

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ shown below.
4848
// build.gradle.kts
4949
dependencies {
5050
// define the BOM and its version
51-
implementation(project.dependencies.platform("org.kotlincrypto.macs:bom:0.7.1"))
51+
implementation(project.dependencies.platform("org.kotlincrypto.macs:bom:0.8.0"))
5252

5353
// define artifacts without version
5454

@@ -75,13 +75,13 @@ dependencies {
7575
```
7676

7777
<!-- TAG_VERSION -->
78-
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.7.1-blue.svg?style=flat
78+
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.8.0-blue.svg?style=flat
7979
[badge-license]: https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
8080

8181
<!-- TAG_DEPENDENCIES -->
8282
[badge-kotlin]: https://img.shields.io/badge/kotlin-2.2.20-blue.svg?logo=kotlin
83-
[badge-core]: https://img.shields.io/badge/kotlincrypto.core-0.8.0--SNAPSHOT-blue.svg
84-
[badge-hash]: https://img.shields.io/badge/kotlincrypto.hash-0.8.0--SNAPSHOT-blue.svg
83+
[badge-core]: https://img.shields.io/badge/kotlincrypto.core-0.8.0-blue.svg
84+
[badge-hash]: https://img.shields.io/badge/kotlincrypto.hash-0.8.0-blue.svg
8585

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

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ POM_DEVELOPER_ID=KotlinCrypto
3333
POM_DEVELOPER_NAME=Kotlin Crypto
3434
POM_DEVELOPER_URL=https://github.com/KotlinCrypto/
3535

36-
VERSION_NAME=0.8.0-SNAPSHOT
36+
VERSION_NAME=0.8.0
3737
# 0.1.0-alpha01 = 00 01 00 11
3838
# 0.1.0-beta01 = 00 01 00 21
3939
# 0.1.0-rc01 = 00 01 00 31

gradle/libs.versions.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ androidx-test-runner = "1.5.2" # Do not upgrade. Tests run for API 15+, w
55
# https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk18on/
66
bouncy-castle = "1.81"
77

8-
encoding = "2.5.0-SNAPSHOT"
8+
encoding = "2.5.0"
99

1010
gradle-android = "8.11.2"
1111
gradle-benchmark = "0.4.14"
@@ -15,10 +15,10 @@ gradle-kmp-configuration = "0.5.2"
1515
gradle-kotlin = "2.2.20"
1616
gradle-publish-maven = "0.34.0"
1717

18-
kotlincrypto-bitops = "0.3.0-SNAPSHOT"
19-
kotlincrypto-core = "0.8.0-SNAPSHOT"
20-
kotlincrypto-hash = "0.8.0-SNAPSHOT"
21-
kotlincrypto-sponges = "0.5.0-SNAPSHOT"
18+
kotlincrypto-bitops = "0.3.0"
19+
kotlincrypto-core = "0.8.0"
20+
kotlincrypto-hash = "0.8.0"
21+
kotlincrypto-sponges = "0.5.0"
2222

2323
[libraries]
2424
gradle-dokka = { module = "org.jetbrains.dokka:dokka-gradle-plugin", version.ref = "gradle-dokka" }

0 commit comments

Comments
 (0)