Skip to content

Commit cf591fe

Browse files
committed
Prepare 0.3.0 release
1 parent 1fb031b commit cf591fe

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# CHANGELOG
22

3+
## Version 0.3.0 (2025-02-25)
4+
- Updates `kotlin` to `2.1.10` [[#7]][7]
5+
36
## Version 0.2.0 (2025-02-06)
47
- Change publication coordinates from group `org.kotlincrypto.error:error` to `org.kotlincrypto:error` [[#3]][3]
58
- Add precondition check helper functions for `InvalidParameterException` [[#5]][5]
@@ -9,3 +12,4 @@
912

1013
[3]: https://github.com/KotlinCrypto/error/pull/3
1114
[5]: https://github.com/KotlinCrypto/error/pull/5
15+
[7]: https://github.com/KotlinCrypto/error/pull/7

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,16 @@ The best way to keep `KotlinCrypto` dependencies up to date is by using the
4040
```kotlin
4141
// build.gradle.kts
4242
dependencies {
43-
implementation("org.kotlincrypto:error:0.2.0")
43+
implementation("org.kotlincrypto:error:0.3.0")
4444
}
4545
```
4646

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

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

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

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

+1-1
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

+1-1
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.3.0-SNAPSHOT
36+
VERSION_NAME=0.3.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

0 commit comments

Comments
 (0)