Skip to content

Commit

Permalink
chore: prepare for release 3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jnizet committed Feb 24, 2022
1 parent 84002d7 commit e23e98e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class GreetingControllerTest {

Add this to your dependencies:
```kotlin
testImplementation("com.ninja-squad:springmockk:3.1.0")
testImplementation("com.ninja-squad:springmockk:3.1.1")
```

If you want to make sure Mockito (and the standard `MockBean` and `SpyBean` annotations) is not used, you can also exclude the mockito dependency:
Expand All @@ -59,7 +59,7 @@ Add this to your dependencies:
<dependency>
<groupId>com.ninja-squad</groupId>
<artifactId>springmockk</artifactId>
<version>3.1.0</version>
<version>3.1.1</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 @@ -17,7 +17,7 @@ plugins {
}

group = "com.ninja-squad"
version = "3.1.0"
version = "3.1.1"
description = "MockBean and SpyBean, but for MockK instead of Mockito"

val sonatypeUsername = project.findProperty("sonatypeUsername")?.toString() ?: ""
Expand Down

0 comments on commit e23e98e

Please sign in to comment.