From c6782d28e48183a096835f9992ede702388eb7e1 Mon Sep 17 00:00:00 2001
From: GitHub <noreply@github.com>
Date: Sat, 23 Dec 2023 18:54:13 +0000
Subject: [PATCH 1/2] Update versions in READMEs [skip ci]

---
 README.md                           |  4 ++--
 transactionoutbox-guice/README.md   |  4 ++--
 transactionoutbox-jackson/README.md |  4 ++--
 transactionoutbox-jooq/README.md    |  4 ++--
 transactionoutbox-quarkus/README.md |  4 ++--
 transactionoutbox-spring/README.md  |  4 ++--
 ~/settings.xml                      | 11 +++++++++++
 7 files changed, 23 insertions(+), 12 deletions(-)
 create mode 100644 ~/settings.xml

diff --git a/README.md b/README.md
index c8dfa147..f7bf45ed 100644
--- a/README.md
+++ b/README.md
@@ -123,14 +123,14 @@ The latest stable release is available from Maven Central. Stable releases are [
 <dependency>
   <groupId>com.gruelbox</groupId>
   <artifactId>transactionoutbox-core</artifactId>
-  <version>5.3.370</version>
+  <version>5.4.421</version>
 </dependency>
 ```
 
 #### Gradle
 
 ```groovy
-implementation 'com.gruelbox:transactionoutbox-core:5.3.370'
+implementation 'com.gruelbox:transactionoutbox-core:5.4.421'
 ```
 
 ### Development snapshots
diff --git a/transactionoutbox-guice/README.md b/transactionoutbox-guice/README.md
index c8da81e9..8f81e77b 100644
--- a/transactionoutbox-guice/README.md
+++ b/transactionoutbox-guice/README.md
@@ -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.3.370</version>
+  <version>5.4.421</version>
 </dependency>
 ```
 
 #### Gradle
 
 ```groovy
-implementation 'com.gruelbox:transactionoutbox-guice:5.3.370'
+implementation 'com.gruelbox:transactionoutbox-guice:5.4.421'
 ```
 
 ### Development snapshots
diff --git a/transactionoutbox-jackson/README.md b/transactionoutbox-jackson/README.md
index 23512e07..e9582cbf 100644
--- a/transactionoutbox-jackson/README.md
+++ b/transactionoutbox-jackson/README.md
@@ -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.3.370</version>
+  <version>5.4.421</version>
 </dependency>
 ```
 
 #### Gradle
 
 ```groovy
-implementation 'com.gruelbox:transactionoutbox-jackson:5.3.370'
+implementation 'com.gruelbox:transactionoutbox-jackson:5.4.421'
 ```
 
 ### Development snapshots
diff --git a/transactionoutbox-jooq/README.md b/transactionoutbox-jooq/README.md
index 2bc09ab9..65302f96 100644
--- a/transactionoutbox-jooq/README.md
+++ b/transactionoutbox-jooq/README.md
@@ -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.3.370</version>
+  <version>5.4.421</version>
 </dependency>
 ```
 
 #### Gradle
 
 ```groovy
-implementation 'com.gruelbox:transactionoutbox-jooq:5.3.370'
+implementation 'com.gruelbox:transactionoutbox-jooq:5.4.421'
 ```
 
 ### Development snapshots
diff --git a/transactionoutbox-quarkus/README.md b/transactionoutbox-quarkus/README.md
index ecfefaf0..824e0716 100644
--- a/transactionoutbox-quarkus/README.md
+++ b/transactionoutbox-quarkus/README.md
@@ -17,14 +17,14 @@ The latest stable release is available from Maven Central.
 <dependency>
   <groupId>com.gruelbox</groupId>
   <artifactId>transactionoutbox-quarkus</artifactId>
-  <version>5.3.370</version>
+  <version>5.4.421</version>
 </dependency>
 ```
 
 #### Gradle
 
 ```groovy
-implementation 'com.gruelbox:transactionoutbox-quarkus:5.3.370'
+implementation 'com.gruelbox:transactionoutbox-quarkus:5.4.421'
 ```
 
 ### Development snapshots
diff --git a/transactionoutbox-spring/README.md b/transactionoutbox-spring/README.md
index b60bd166..09f086f1 100644
--- a/transactionoutbox-spring/README.md
+++ b/transactionoutbox-spring/README.md
@@ -20,14 +20,14 @@ The latest stable release is available from Maven Central.
 <dependency>
   <groupId>com.gruelbox</groupId>
   <artifactId>transactionoutbox-spring</artifactId>
-  <version>5.3.370</version>
+  <version>5.4.421</version>
 </dependency>
 ```
 
 #### Gradle
 
 ```groovy
-implementation 'com.gruelbox:transactionoutbox-spring:5.3.370'
+implementation 'com.gruelbox:transactionoutbox-spring:5.4.421'
 ```
 
 ### Development snapshots
diff --git a/~/settings.xml b/~/settings.xml
new file mode 100644
index 00000000..31838387
--- /dev/null
+++ b/~/settings.xml
@@ -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>
\ No newline at end of file

From 549ec61f53503d48ff6000d2989aa9e21345715c Mon Sep 17 00:00:00 2001
From: Graham Crockford <6483013+badgerwithagun@users.noreply.github.com>
Date: Sat, 23 Dec 2023 18:57:02 +0000
Subject: [PATCH 2/2] Delete ~/settings.xml

---
 ~/settings.xml | 11 -----------
 1 file changed, 11 deletions(-)
 delete mode 100644 ~/settings.xml

diff --git a/~/settings.xml b/~/settings.xml
deleted file mode 100644
index 31838387..00000000
--- a/~/settings.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<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>
\ No newline at end of file