Skip to content

Commit 5b65eff

Browse files
committed
chore: Bumping the version numbers after release
Signed-off-by: Laurent Broudoux <[email protected]>
1 parent 62287b3 commit 5b65eff

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ Java library for Testcontainers that enables embedding Microcks into your JUnit
2828

2929
## Build Status
3030

31-
Latest released version is `0.4.3`.
31+
Latest released version is `0.4.4`.
3232

33-
Current development version is `0.4.4-SNAPSHOT`.
33+
Current development version is `0.4.5-SNAPSHOT`.
3434

3535
#### Sonarcloud Quality metrics
3636

@@ -70,15 +70,15 @@ If you're using Maven:
7070
<dependency>
7171
<groupId>io.github.microcks</groupId>
7272
<artifactId>microcks-testcontainers</artifactId>
73-
<version>0.4.3</version>
73+
<version>0.4.4</version>
7474
</dependency>
7575
```
7676

7777
or if you're using Gradle:
7878

7979
```groovy
8080
dependencies {
81-
testImplementation 'io.github.microcks:microcks-testcontainers:0.4.3'
81+
testImplementation 'io.github.microcks:microcks-testcontainers:0.4.4'
8282
}
8383
```
8484

@@ -100,7 +100,7 @@ Artifacts can be imported as main/Primary ones or as secondary ones. See [Multi-
100100
You can do it before starting the container using simple paths:
101101

102102
```java
103-
MicrocksContainer microcks = new MicrocksContainer(DockerImageName.parse("quay.io/microcks/microcks-uber:1.13.0"))
103+
MicrocksContainer microcks = new MicrocksContainer(DockerImageName.parse("quay.io/microcks/microcks-uber:1.13.2"))
104104
.withMainArtifacts("apipastries-openapi.yaml")
105105
.withSecondaryArtifacts("apipastries-postman-collection.json");
106106
microcks.start();
@@ -118,7 +118,7 @@ Please refer to our [MicrocksContainerTest](https://github.com/microcks/microcks
118118
You can also import full [repository snapshots](https://microcks.io/documentation/administrating/snapshots/) at once:
119119

120120
```java
121-
MicrocksContainer microcks = new MicrocksContainer(DockerImageName.parse("quay.io/microcks/microcks-uber:1.12.0"))
121+
MicrocksContainer microcks = new MicrocksContainer(DockerImageName.parse("quay.io/microcks/microcks-uber:1.13.2"))
122122
.withSnapshots("microcks-repository.json");
123123
microcks.start();
124124
```

0 commit comments

Comments
 (0)