Skip to content

Commit c852d41

Browse files
authored
GH-94: Document new release (#96)
1 parent 0a36c3e commit c852d41

File tree

2 files changed

+7
-12
lines changed

2 files changed

+7
-12
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ In gradle it would look like this:
5151

5252
```groovy
5353
dependencies {
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
230230
that, 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
247247
To 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
349349
This 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

build.gradle

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,6 @@ scmVersion {
2121
tag {
2222
prefix = ''
2323
}
24-
25-
hooks {
26-
pre 'fileUpdate', [file: 'README.md', pattern: {v,p -> /($v)/}, replacement: {v, p -> "$v"}]
27-
pre 'commit'
28-
}
2924
}
3025

3126
group = 'com.epages'

0 commit comments

Comments
 (0)