Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
z4kn4fein committed May 20, 2022
1 parent 67fc627 commit 9271dea
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
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.3.1] - 2022-05-20
### Fixed
- Mysterious missing target issue. [#4](https://github.com/z4kn4fein/kotlin-semver/issues/4)

## [1.3.0] - 2022-05-18
### Added
- `kotlinx.serialization` support with predefined serializers.
Expand Down
4 changes: 2 additions & 2 deletions Module.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repositories {
Then, you can add the package to your dependencies.
```kotlin
dependencies {
implementation("io.github.z4kn4fein:semver:1.3.0")
implementation("io.github.z4kn4fein:semver:1.3.1")
}
```
<br/>
Expand All @@ -26,7 +26,7 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation("io.github.z4kn4fein:semver:1.3.0")
implementation("io.github.z4kn4fein:semver:1.3.1")
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ repositories {
Then, you can add the package to your dependencies.
```kotlin
dependencies {
implementation("io.github.z4kn4fein:semver:1.3.0")
implementation("io.github.z4kn4fein:semver:1.3.1")
}
```
In case of a multiplatform project, you can simply reference the package in your `commonMain` source set.
Expand All @@ -32,7 +32,7 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation("io.github.z4kn4fein:semver:1.3.0")
implementation("io.github.z4kn4fein:semver:1.3.1")
}
}
}
Expand Down

0 comments on commit 9271dea

Please sign in to comment.