Skip to content

Commit

Permalink
Update versions in READMEs [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow authored Jan 14, 2025
1 parent 2bee814 commit 60d8564
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,14 +125,14 @@ The latest stable release is available from Maven Central. Stable releases are [
<dependency>
<groupId>com.gruelbox</groupId>
<artifactId>transactionoutbox-core</artifactId>
<version>5.5.447</version>
<version>6.0.535</version>
</dependency>
```

#### Gradle

```groovy
implementation 'com.gruelbox:transactionoutbox-core:5.5.447'
implementation 'com.gruelbox:transactionoutbox-core:6.0.535'
```

### Development snapshots
Expand Down
4 changes: 2 additions & 2 deletions transactionoutbox-guice/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ Extension for [transaction-outbox-core](../README.md) which integrates with Guic
<dependency>
<groupId>com.gruelbox</groupId>
<artifactId>transactionoutbox-guice</artifactId>
<version>5.5.447</version>
<version>6.0.535</version>
</dependency>
```

#### Gradle

```groovy
implementation 'com.gruelbox:transactionoutbox-guice:5.5.447'
implementation 'com.gruelbox:transactionoutbox-guice:6.0.535'
```

### Development snapshots
Expand Down
4 changes: 2 additions & 2 deletions transactionoutbox-jackson/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ which is why it is not included in the core library.
<dependency>
<groupId>com.gruelbox</groupId>
<artifactId>transactionoutbox-jackson</artifactId>
<version>5.5.447</version>
<version>6.0.535</version>
</dependency>
```

#### Gradle

```groovy
implementation 'com.gruelbox:transactionoutbox-jackson:5.5.447'
implementation 'com.gruelbox:transactionoutbox-jackson:6.0.535'
```

### Development snapshots
Expand Down
4 changes: 2 additions & 2 deletions transactionoutbox-jooq/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jOOQ gives you the option to either use thread-local transaction management or e
<dependency>
<groupId>com.gruelbox</groupId>
<artifactId>transactionoutbox-jooq</artifactId>
<version>5.5.447</version>
<version>6.0.535</version>
</dependency>
```

#### Gradle

```groovy
implementation 'com.gruelbox:transactionoutbox-jooq:5.5.447'
implementation 'com.gruelbox:transactionoutbox-jooq:6.0.535'
```

### Development snapshots
Expand Down
4 changes: 2 additions & 2 deletions transactionoutbox-quarkus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ The latest stable release is available from Maven Central.
<dependency>
<groupId>com.gruelbox</groupId>
<artifactId>transactionoutbox-quarkus</artifactId>
<version>5.5.447</version>
<version>6.0.535</version>
</dependency>
```

#### Gradle

```groovy
implementation 'com.gruelbox:transactionoutbox-quarkus:5.5.447'
implementation 'com.gruelbox:transactionoutbox-quarkus:6.0.535'
```

### Development snapshots
Expand Down
4 changes: 2 additions & 2 deletions transactionoutbox-spring/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ The latest stable release is available from Maven Central.
<dependency>
<groupId>com.gruelbox</groupId>
<artifactId>transactionoutbox-spring</artifactId>
<version>5.5.447</version>
<version>6.0.535</version>
</dependency>
```

#### Gradle

```groovy
implementation 'com.gruelbox:transactionoutbox-spring:5.5.447'
implementation 'com.gruelbox:transactionoutbox-spring:6.0.535'
```

### Development snapshots
Expand Down
11 changes: 11 additions & 0 deletions ~/settings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>github</id>
<username>${env.GITHUB_ACTOR}</username>
<password>${env.GITHUB_TOKEN}</password>
</server>
</servers>
</settings>

0 comments on commit 60d8564

Please sign in to comment.