Skip to content

Commit 8f7224e

Browse files
committed
chore: #252 Bump versions in README
Signed-off-by: Laurent Broudoux <[email protected]>
1 parent 1b83d34 commit 8f7224e

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

README.md

Lines changed: 6 additions & 8 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.1`.
31+
Latest released version is `0.4.2`.
3232

33-
Current development version is `0.4.2-SNAPSHOT`.
33+
Current development version is `0.4.3-SNAPSHOT`.
3434

3535
#### Sonarcloud Quality metrics
3636

@@ -70,27 +70,25 @@ If you're using Maven:
7070
<dependency>
7171
<groupId>io.github.microcks</groupId>
7272
<artifactId>microcks-testcontainers</artifactId>
73-
<version>0.4.1</version>
73+
<version>0.4.2</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.1'
81+
testImplementation 'io.github.microcks:microcks-testcontainers:0.4.2'
8282
}
8383
```
8484

8585
### Startup the container
8686

8787
You just have to specify the container image you'd like to use. This library requires a Microcks `uber` distribution (with no MongoDB dependency).
8888

89-
Version `0.2.9` and above require version `1.10.0` of Microcks container images to enable MQTT and RabbitMQ support.
90-
9189
```java
9290
MicrocksContainer microcks = new MicrocksContainer(
93-
DockerImageName.parse("quay.io/microcks/microcks-uber:1.12.0"));
91+
DockerImageName.parse("quay.io/microcks/microcks-uber:1.13.0"));
9492
microcks.start();
9593
```
9694

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

104102
```java
105-
MicrocksContainer microcks = new MicrocksContainer(DockerImageName.parse("quay.io/microcks/microcks-uber:1.12.0"))
103+
MicrocksContainer microcks = new MicrocksContainer(DockerImageName.parse("quay.io/microcks/microcks-uber:1.13.0"))
106104
.withMainArtifacts("apipastries-openapi.yaml")
107105
.withSecondaryArtifacts("apipastries-postman-collection.json");
108106
microcks.start();

0 commit comments

Comments
 (0)