Skip to content

Commit

Permalink
Prepare 0.5.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm committed Aug 31, 2024
1 parent 952bbc1 commit c35224d
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 11 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 0.5.3 (2024-08-31)
- Updates `kotlincrypto.core` to `0.5.3`
- Updates `kotlincrypto.endians` to `0.3.1`
- Updates `kotlincrypto.sponges` to `0.3.1`
- Updates `kotlin` to `1.9.24` [[#65]][65]
- Fixes multiplatform metadata manifest `unique_name` parameter for
all source sets to be truly unique. [[#65]][65]
- Updates jvm `.kotlin_module` with truly unique file name. [[#65]][65]

## Version 0.5.1 (2024-03-18)
- Updates `kotlincrypto.core` to `0.5.1` [[#58]][58]
- Updates `kotlincrypto.endians` to `0.3.0` [[#58]][58]
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ shown below.
// build.gradle.kts
dependencies {
// define the BOM and its version
implementation(platform("org.kotlincrypto.hash:bom:0.5.1"))
implementation(platform("org.kotlincrypto.hash:bom:0.5.3"))

// define artifacts without version

Expand All @@ -139,14 +139,14 @@ dependencies {
```

<!-- TAG_VERSION -->
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.5.1-blue.svg?style=flat
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.5.3-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.9.23-blue.svg?logo=kotlin
[badge-core]: https://img.shields.io/badge/kotlincrypto.core-0.5.1-blue.svg
[badge-endians]: https://img.shields.io/badge/kotlincrypto.endians-0.3.0-blue.svg
[badge-sponges]: https://img.shields.io/badge/kotlincrypto.sponges-0.3.0-blue.svg
[badge-kotlin]: https://img.shields.io/badge/kotlin-1.9.24-blue.svg?logo=kotlin
[badge-core]: https://img.shields.io/badge/kotlincrypto.core-0.5.3-blue.svg
[badge-endians]: https://img.shields.io/badge/kotlincrypto.endians-0.3.1-blue.svg
[badge-sponges]: https://img.shields.io/badge/kotlincrypto.sponges-0.3.1-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.5.2-SNAPSHOT
VERSION_NAME=0.5.3
# 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=50299
VERSION_CODE=00050399
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ gradle-kmp-configuration = "0.3.2"
gradle-kotlin = "1.9.24"
gradle-publish-maven = "0.29.0"

kotlincrypto-core = "0.5.1"
kotlincrypto-endians = "0.3.0"
kotlincrypto-sponges = "0.3.0"
kotlincrypto-core = "0.5.3"
kotlincrypto-endians = "0.3.1"
kotlincrypto-sponges = "0.3.1"

# tests
androidx-test-runner = "1.5.2"
Expand Down

0 comments on commit c35224d

Please sign in to comment.