Skip to content

Commit

Permalink
Release version
Browse files Browse the repository at this point in the history
  • Loading branch information
utwyko committed Mar 15, 2020
1 parent c8909c5 commit 9c19073
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Change Log
## 1.0.2 (15 Mar 2020)
* Use `@OptIn` flag instead of deprecated `@UseExperimental` flag for reified syntax.
* Update Kotlin from `1.3.50` to `1.3.70`.

## 1.0.1 (25 Aug 2019)
* Fix issue where self referential exception was incorrectly thrown

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,14 @@ class ExampleTest {

Gradle:
```groovy
testImplementation 'nl.wykorijnsburger.kminrandom:kminrandom:1.0.1'
testImplementation 'nl.wykorijnsburger.kminrandom:kminrandom:1.0.2'
```
or Maven:
```xml
<dependency>
<groupId>nl.wykorijnsburger.kminrandom</groupId>
<artifactId>kminrandom</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<scope>test</scope>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group = "nl.wykorijnsburger.kminrandom"
version = "1.0.1"
version = "1.0.2"

repositories {
mavenCentral()
Expand Down

0 comments on commit 9c19073

Please sign in to comment.