Skip to content

Commit 6815d1e

Browse files
committed
Prepare 0.3.1 release
1 parent dff7870 commit 6815d1e

File tree

7 files changed

+16
-21
lines changed

7 files changed

+16
-21
lines changed

CHANGELOG.md

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

3+
## Version 0.3.1 (2025-08-25)
4+
- Add `SignatureException` [[#12]][12]
5+
- Updates `kotlin` to `2.2.10` [[#13]][13]
6+
37
## Version 0.3.0 (2025-02-25)
48
- Updates `kotlin` to `2.1.10` [[#7]][7]
59

@@ -13,3 +17,5 @@
1317
[3]: https://github.com/KotlinCrypto/error/pull/3
1418
[5]: https://github.com/KotlinCrypto/error/pull/5
1519
[7]: https://github.com/KotlinCrypto/error/pull/7
20+
[12]: https://github.com/KotlinCrypto/error/pull/12
21+
[13]: https://github.com/KotlinCrypto/error/pull/13

README.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
![badge-platform-watchos]
1717
![badge-platform-windows]
1818
![badge-support-android-native]
19-
![badge-support-apple-silicon]
20-
![badge-support-js-ir]
2119
![badge-support-linux-arm]
2220

2321
Error handling and exception types for KotlinCrypto
@@ -40,16 +38,16 @@ The best way to keep `KotlinCrypto` dependencies up to date is by using the
4038
```kotlin
4139
// build.gradle.kts
4240
dependencies {
43-
implementation("org.kotlincrypto:error:0.3.0")
41+
implementation("org.kotlincrypto:error:0.3.1")
4442
}
4543
```
4644

4745
<!-- TAG_VERSION -->
48-
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.3.0-blue.svg?style=flat
46+
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.3.1-blue.svg?style=flat
4947
[badge-license]: https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
5048

5149
<!-- TAG_DEPENDENCIES -->
52-
[badge-kotlin]: https://img.shields.io/badge/kotlin-2.1.10-blue.svg?logo=kotlin
50+
[badge-kotlin]: https://img.shields.io/badge/kotlin-2.2.10-blue.svg?logo=kotlin
5351

5452
<!-- TAG_PLATFORMS -->
5553
[badge-platform-android]: http://img.shields.io/badge/-android-6EDB8D.svg?style=flat
@@ -64,10 +62,7 @@ dependencies {
6462
[badge-platform-wasm]: https://img.shields.io/badge/-wasm-624FE8.svg?style=flat
6563
[badge-platform-windows]: http://img.shields.io/badge/-windows-4D76CD.svg?style=flat
6664
[badge-support-android-native]: http://img.shields.io/badge/support-[AndroidNative]-6EDB8D.svg?style=flat
67-
[badge-support-apple-silicon]: http://img.shields.io/badge/support-[AppleSilicon]-43BBFF.svg?style=flat
68-
[badge-support-js-ir]: https://img.shields.io/badge/support-[js--IR]-AAC4E0.svg?style=flat
6965
[badge-support-linux-arm]: http://img.shields.io/badge/support-[LinuxArm]-2D3F6C.svg?style=flat
70-
[badge-support-linux-mips]: http://img.shields.io/badge/support-[LinuxMIPS]-2D3F6C.svg?style=flat
7166

7267
[url-latest-release]: https://github.com/KotlinCrypto/error/releases/latest
7368
[url-license]: https://www.apache.org/licenses/LICENSE-2.0.txt

RELEASING.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
# Releasing
1+
# RELEASING
22

3-
The release process is documented [HERE](https://github.com/KotlinCrypto/documentation/blob/master/RELEASING.md)
3+
The release process is documented [HERE][url-kotlincrypto-releasing]
4+
5+
[url-kotlincrypto-releasing]: https://github.com/KotlinCrypto/documentation/blob/master/RELEASING.md

build-logic/src/main/kotlin/-KmpConfigurationExtension.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
2121
fun KmpConfigurationExtension.configureShared(
2222
java9ModuleName: String? = null,
2323
publish: Boolean = false,
24-
action: Action<KmpConfigurationContainerDsl>
24+
action: Action<KmpConfigurationContainerDsl>,
2525
) {
2626
if (publish) {
2727
require(!java9ModuleName.isNullOrBlank()) { "publications must specify a module-info name" }

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

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,10 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
**/
16-
import org.gradle.plugins.signing.SigningExtension
17-
1816
plugins {
1917
id("com.vanniktech.maven.publish")
2018
}
2119

22-
if (!version.toString().endsWith("-SNAPSHOT")) {
23-
extensions.configure<SigningExtension>("signing") {
24-
useGpgCmd()
25-
}
26-
}
27-
2820
tasks.withType<AbstractArchiveTask>().configureEach {
2921
isPreserveFileTimestamps = false
3022
isReproducibleFileOrder = true

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.3.1-SNAPSHOT
33+
VERSION_NAME=0.3.1
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

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[versions]
22
gradle-binary-compat = "0.18.1"
33
gradle-dokka = "2.0.0"
4-
gradle-kmp-configuration = "0.5.1"
4+
gradle-kmp-configuration = "0.5.2"
55
gradle-kotlin = "2.2.10"
66
gradle-publish-maven = "0.34.0"
77

0 commit comments

Comments
 (0)