Skip to content

Commit

Permalink
Prepare 0.5.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm committed Mar 18, 2024
1 parent 49d0988 commit a83c921
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

## Version 0.5.0 (2024-03-18)
- Use `transitive` keyword for `JPMS` `module-info.java` files [[#58]][58]

## Version 0.5.0 (2024-03-18)
- Updates `kotlin` to `1.9.23` [[#55]][55]
- Updates `endians` to `0.3.0` [[#55]][55]
Expand Down Expand Up @@ -111,3 +114,4 @@
[52]: https://github.com/KotlinCrypto/core/pull/52
[55]: https://github.com/KotlinCrypto/core/pull/55
[56]: https://github.com/KotlinCrypto/core/pull/56
[58]: https://github.com/KotlinCrypto/core/pull/58
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ The best way to keep `KotlinCrypto` dependencies up to date is by using the
```kotlin
// build.gradle.kts
dependencies {
val core = "0.5.0"
val core = "0.5.1"
implementation("org.kotlincrypto.core:digest:$core")
implementation("org.kotlincrypto.core:mac:$core")
implementation("org.kotlincrypto.core:xof:$core")
Expand All @@ -229,15 +229,15 @@ dependencies {
```groovy
// build.gradle
dependencies {
def core = "0.5.0"
def core = "0.5.1"
implementation "org.kotlincrypto.core:digest:$core"
implementation "org.kotlincrypto.core:mac:$core"
implementation "org.kotlincrypto.core:xof:$core"
}
```

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

<!-- TAG_DEPENDENCIES -->
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ POM_DEVELOPER_ID=KotlinCrypto
POM_DEVELOPER_NAME=Kotlin Crypto
POM_DEVELOPER_URL=https://github.com/KotlinCrypto/

VERSION_NAME=0.5.1-SNAPSHOT
VERSION_NAME=0.5.1
# 0.1.0-alpha01 = 00 01 00 11
# 0.1.0-beta01 = 00 01 00 21
# 0.1.0-rc01 = 00 01 00 31
Expand Down

0 comments on commit a83c921

Please sign in to comment.