diff --git a/README.md b/README.md index fe8b749..17ad02b 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ class GreetingControllerTest { Add this to your dependencies: ```kotlin -testImplementation("com.ninja-squad:springmockk:4.0.1") +testImplementation("com.ninja-squad:springmockk:4.0.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 - 4.0.1 + 4.0.2 test ``` diff --git a/build.gradle.kts b/build.gradle.kts index 7b392fb..62acde3 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -17,7 +17,7 @@ plugins { } group = "com.ninja-squad" -version = "4.0.1" +version = "4.0.2" description = "MockBean and SpyBean, but for MockK instead of Mockito" val sonatypeUsername = project.findProperty("sonatypeUsername")?.toString() ?: ""