Skip to content

Commit aba4704

Browse files
author
Adrian Tosca
committed
bump dependencies
1 parent 18fccc8 commit aba4704

File tree

5 files changed

+26
-9
lines changed

5 files changed

+26
-9
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# typeid-kotlin
22
![Build Status](https://github.com/aleris/typeid-kotlin/actions/workflows/build-on-push.yml/badge.svg)
3-
![Current Version](https://img.shields.io/badge/Version-1.0.0-blue)
3+
![Current Version](https://img.shields.io/badge/Version-1.0.1-blue)
44

55

66
## A Kotlin implementation of [TypeID](https://github.com/jetpack-io/typeid).
@@ -25,14 +25,14 @@ To use with Maven:
2525
<dependency>
2626
<groupId>earth.adi</groupId>
2727
<artifactId>typeid-kotlin</artifactId>
28-
<version>1.0.0</version>
28+
<version>1.0.1</version>
2929
</dependency>
3030
```
3131

3232
To use via Gradle:
3333

3434
```kotlin
35-
implementation("earth.adi:typeid-kotlin:1.0.0")
35+
implementation("earth.adi:typeid-kotlin:1.0.1")
3636
```
3737

3838

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ plugins {
1515

1616
group = "earth.adi"
1717

18-
version = "1.0.0"
18+
version = "1.0.1"
1919

2020
repositories { mavenCentral() }
2121

gradle/libs.versions.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[versions]
22
kotlin = "1.9.24"
33
spotless = "6.25.0"
4-
javaUuidGenerator = "5.0.0"
5-
jackson = "2.17.0"
6-
junit = "5.10.2"
7-
assertj = "3.25.3"
4+
javaUuidGenerator = "5.1.0"
5+
jackson = "2.18.2"
6+
junit = "5.11.3"
7+
assertj = "3.26.3"
88
jmh = "0.7.2"
99
jqwik = "1.8.4"
10-
jreleaser = "1.12.0"
10+
jreleaser = "1.15.0"
1111
dokka = "1.9.20"
1212
kotlinxSerialization = "1.6.3"
1313

src/main/java/module-info.java

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
requires com.fasterxml.jackson.databind;
77
requires kotlin.stdlib;
88
requires kotlinx.serialization.core;
9+
requires java.compiler;
910

1011
exports earth.adi.typeid;
1112
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
package earth.adi.typeid.jackson
2+
3+
import org.assertj.core.api.Assertions.assertThatCode
4+
import org.junit.jupiter.api.Test
5+
6+
class IdJsonSerializerTest {
7+
@Test
8+
fun `constructor with null does not throw`() {
9+
assertThatCode { IdJsonSerializer(null) }.doesNotThrowAnyException()
10+
}
11+
12+
@Test
13+
fun `constructor with default does not throw`() {
14+
assertThatCode { IdJsonSerializer() }.doesNotThrowAnyException()
15+
}
16+
}

0 commit comments

Comments
 (0)