Skip to content

Commit

Permalink
chore(#12): release version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LVMVRQUXL committed Aug 22, 2022
1 parent a1b4890 commit 0c122fa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group = "io.github.kotools"
version = "1.2.0"
version = "2.0.0"

repositories(RepositoryHandler::mavenCentral)

Expand Down
2 changes: 2 additions & 0 deletions changelog.md
Expand Up @@ -17,6 +17,8 @@ All notable changes to this project will be documented in this file.

## Work in progress

## Version 2.0.0 - 2022/04/11

### Removed

- Equality and nullability assertions with lazy messages
Expand Down
6 changes: 3 additions & 3 deletions readme.md
Expand Up @@ -40,13 +40,13 @@ assertFailsWith<RuntimeException>("Should fail with RuntimeException") {
#### Kotlin DSL

```kotlin
testImplementation("io.github.kotools:assert:1.2.0")
testImplementation("io.github.kotools:assert:2.0.0")
```

#### Groovy DSL

```groovy
testImplementation 'io.github.kotools:assert:1.2.0'
testImplementation 'io.github.kotools:assert:2.0.0'
```

### Maven
Expand All @@ -55,7 +55,7 @@ testImplementation 'io.github.kotools:assert:1.2.0'
<dependency>
<groupId>io.github.kotools</groupId>
<artifactId>assert</artifactId>
<version>1.2.0</version>
<version>2.0.0</version>
<scope>test</scope>
</dependency>
```
Expand Down

0 comments on commit 0c122fa

Please sign in to comment.