diff --git a/README.md b/README.md index de9df1c..485a6c2 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ class GreetingControllerTest { Add this to your dependencies: ```kotlin -testImplementation("com.ninja-squad:springmockk:3.1.1") +testImplementation("com.ninja-squad:springmockk:3.1.2") ``` If you want to make sure Mockito (and the standard `MockBean` and `SpyBean` annotations) is not used, you can also exclude the mockito dependency: @@ -59,7 +59,7 @@ Add this to your dependencies: com.ninja-squad springmockk - 3.1.1 + 3.1.2 test ``` diff --git a/build.gradle.kts b/build.gradle.kts index 766be9b..9fcd80c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -17,7 +17,7 @@ plugins { } group = "com.ninja-squad" -version = "4.0.0" +version = "3.1.2" description = "MockBean and SpyBean, but for MockK instead of Mockito" val sonatypeUsername = project.findProperty("sonatypeUsername")?.toString() ?: ""