@@ -51,7 +51,7 @@ In gradle it would look like this:
5151
5252``` groovy
5353dependencies {
54- testCompile('com.epages:restdocs-wiremock:0.8.4 ')
54+ testCompile('com.epages:restdocs-wiremock:0.8.5 ')
5555 testCompile('org.springframework.restdocs:spring-restdocs-mockmvc')
5656}
5757```
@@ -62,7 +62,7 @@ When using maven:
6262<dependency >
6363 <groupId >com.epages</groupId >
6464 <artifactId >restdocs-wiremock</artifactId >
65- <version >0.8.4 </version >
65+ <version >0.8.5 </version >
6666 <scope >test</scope >
6767</dependency >
6868<dependency >
@@ -230,7 +230,7 @@ On the client side, add a dependency to the test-runtime to the jar containing t
230230that, the JSON files can be accessed as classpath resources.
231231
232232```groovy
233- testRuntime (group: ' com.epages' , name: ' restdocs-server' , version: ' 0.8.4 ' , classifier: ' wiremock' , ext: ' jar' )
233+ testRuntime (group: ' com.epages' , name: ' restdocs-server' , version: ' 0.8.5 ' , classifier: ' wiremock' , ext: ' jar' )
234234```
235235
236236## How to use WireMock in your client tests
@@ -247,7 +247,7 @@ Services based on `spring-cloud-netflix`, i.e. using `feign` and `ribbon`, are a
247247To add a dependency via gradle, extend your `build. gradle` with the following line:
248248
249249```groovy
250- testCompile(' com.epages:wiremock-spring-boot-starter:0.8.4 ' )
250+ testCompile(' com.epages:wiremock-spring-boot-starter:0.8.5 ' )
251251```
252252
253253
@@ -257,7 +257,7 @@ When using maven, add the following dependency in test scope.
257257< dependency>
258258 < groupId> com. epages< / groupId>
259259 < artifactId> wiremock- spring- boot- starter< / artifactId>
260- < version> 0.8 . 4 < / version>
260+ < version> 0.8 . 5 < / version>
261261 < scope> test< / scope>
262262< / dependency>
263263```
@@ -344,7 +344,7 @@ Given that the `master` branch on the upstream repository is in the state from w
344344
345345**(1) [Create release via the GitHub UI](https://github.com/ePages-de/restdocs-wiremock/releases/new)**
346346
347- Use the intended version number as "Tag version", e.g. "0.8.5" .
347+ Use the intended version number as "Tag version".
348348
349349This will automatically trigger a GitHub Action build which publishes the JAR files for this release to Sonatype.
350350
@@ -364,7 +364,7 @@ After few minutes, the release should be available in the ["Public Repositories"
364364
365365**(5) Update documentation**
366366
367- Create a new commit which updates the version numbers in the `README` file.
367+ Create a new commit which replaces the previous version number with the new version number in this `README` file.
368368
369369## Other resources
370370
0 commit comments