Skip to content

Commit f73d53b

Browse files
committed
Prepare 0.2.0 release
1 parent f2d9b80 commit f73d53b

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

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

3+
## Version 0.2.0 (2025-02-25)
4+
- Updates `kotlin` to `2.1.10` [[#14]][14]
5+
36
## Version 0.1.2 (2025-01-17)
47
- Fixes `Counter.Bit64.Final.asBits` calculation [[#12]][12]
58

@@ -11,3 +14,4 @@
1114

1215
[9]: https://github.com/KotlinCrypto/bitops/pull/9
1316
[12]: https://github.com/KotlinCrypto/bitops/pull/12
17+
[14]: https://github.com/KotlinCrypto/bitops/pull/14

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,18 @@ The best way to keep `KotlinCrypto` dependencies up to date is by using the
3939
```kotlin
4040
// build.gradle.kts
4141
dependencies {
42-
val vBitOps = "0.1.2"
42+
val vBitOps = "0.2.0"
4343
implementation("org.kotlincrypto.bitops:bits:$vBitOps")
4444
implementation("org.kotlincrypto.bitops:endian:$vBitOps")
4545
}
4646
```
4747

4848
<!-- TAG_VERSION -->
49-
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.1.2-blue.svg?style=flat
49+
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.2.0-blue.svg?style=flat
5050
[badge-license]: https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
5151

5252
<!-- TAG_DEPENDENCIES -->
53-
[badge-kotlin]: https://img.shields.io/badge/kotlin-1.9.24-blue.svg?logo=kotlin
53+
[badge-kotlin]: https://img.shields.io/badge/kotlin-2.1.10-blue.svg?logo=kotlin
5454

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

build-logic/src/main/kotlin/dokka.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ rootProject.dependencies { dokka(project(project.path)) }
2626

2727
extensions.configure<DokkaExtension> {
2828
dokkaPublications.configureEach {
29-
suppressInheritedMembers.set(true)
29+
suppressObviousFunctions.set(true)
3030
}
3131

3232
dokkaSourceSets.configureEach {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ POM_DEVELOPER_ID=KotlinCrypto
3030
POM_DEVELOPER_NAME=Kotlin Crypto
3131
POM_DEVELOPER_URL=https://github.com/KotlinCrypto/
3232

33-
VERSION_NAME=0.2.0-SNAPSHOT
33+
VERSION_NAME=0.2.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

0 commit comments

Comments
 (0)