From 8362e35ee4cd6cc913b26511ac764470153e6ae4 Mon Sep 17 00:00:00 2001 From: Julien Viet Date: Mon, 30 Apr 2018 12:34:30 +0200 Subject: [PATCH 01/18] Set version to 3.5.2-SNAPSHOT --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 92d7ec99..8fb817a2 100644 --- a/pom.xml +++ b/pom.xml @@ -9,12 +9,12 @@ 4.0.0 vertx-mysql-postgresql-client - 3.5.1 + 3.5.2-SNAPSHOT Vert.x MySQL/PostgreSQL Client - 3.5.1 + 3.5.2-SNAPSHOT 2.12.4 0.2.21 true From be74528ee4533045d3d5632ee0dc10bb0dc855e5 Mon Sep 17 00:00:00 2001 From: Julien Viet Date: Mon, 30 Apr 2018 12:34:40 +0200 Subject: [PATCH 02/18] Added Jenkinsfile --- Jenkinsfile | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 00000000..da0a4307 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,43 @@ +pipeline { + agent any + tools { + maven 'Maven' + } + environment { + MAVEN_SETTINGS_PATH = credentials("jenkins-sonatype-snapshot-repo-settings") + } + stages { + stage ('OracleJDK 8') { + tools { + jdk 'OracleJDK 8' + } + steps { + sh 'mvn -U -B -Dsurefire.reportNameSuffix=OracleJDK_8 -DskipTests clean deploy -s $MAVEN_SETTINGS_PATH' + } + post { + // always { + // junit '**/target/surefire-reports/*.xml' + // } + failure { + mail to:'vertx3-ci@googlegroups.com', subject:"Job '${env.JOB_NAME}' (${env.BUILD_NUMBER})", body: "Please go to ${env.BUILD_URL}." + } + } + } + stage ('OracleJDK latest') { + tools { + jdk 'OracleJDK latest' + } + when { + branch 'master' + } + steps { + sh 'mvn -U -B -fn -Dsurefire.reportNameSuffix=OracleJDK_latest -DskipTests clean test' + } + // post { + // always { + // junit '**/target/surefire-reports/*.xml' + // } + // } + } + } +} From 28a458c0aabde20aa416959d367b7b3be3c6d0d3 Mon Sep 17 00:00:00 2001 From: Thomas Segismont Date: Tue, 13 Feb 2018 16:10:09 +0100 Subject: [PATCH 03/18] query/queryStream/update handlers must be invoked just once Fixes #104 Handlers were invoked again if they threw an exception. --- .../asyncsql/impl/AsyncSQLConnectionImpl.java | 26 +++++++++--- .../io/vertx/ext/asyncsql/SQLTestBase.java | 42 +++++++++++++++++++ 2 files changed, 63 insertions(+), 5 deletions(-) diff --git a/src/main/java/io/vertx/ext/asyncsql/impl/AsyncSQLConnectionImpl.java b/src/main/java/io/vertx/ext/asyncsql/impl/AsyncSQLConnectionImpl.java index b5bc0db9..1802df30 100644 --- a/src/main/java/io/vertx/ext/asyncsql/impl/AsyncSQLConnectionImpl.java +++ b/src/main/java/io/vertx/ext/asyncsql/impl/AsyncSQLConnectionImpl.java @@ -24,12 +24,19 @@ import io.vertx.core.Handler; import io.vertx.core.json.JsonArray; import io.vertx.ext.asyncsql.impl.pool.AsyncConnectionPool; -import io.vertx.ext.sql.*; +import io.vertx.ext.sql.ResultSet; +import io.vertx.ext.sql.SQLConnection; +import io.vertx.ext.sql.SQLOptions; +import io.vertx.ext.sql.SQLRowStream; +import io.vertx.ext.sql.TransactionIsolation; +import io.vertx.ext.sql.UpdateResult; import scala.Option; import scala.concurrent.ExecutionContext; import scala.runtime.AbstractFunction1; -import java.util.*; +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; /** * Implementation of {@link SQLConnection} using the {@link AsyncConnectionPool}. @@ -302,11 +309,14 @@ private synchronized void beginTransactionIfNeeded(Handler> ac private Handler> handleAsyncQueryResultToResultSet(Handler> handler) { return ar -> { if (ar.succeeded()) { + ResultSet result; try { - handler.handle(Future.succeededFuture(queryResultToResultSet(ar.result()))); + result = queryResultToResultSet(ar.result()); } catch (Throwable e) { handler.handle(Future.failedFuture(e)); + return; } + handler.handle(Future.succeededFuture(result)); } else { handler.handle(Future.failedFuture(ar.cause())); } @@ -316,11 +326,14 @@ private Handler> handleAsyncQueryResultToResultSet(Hand private Handler> handleAsyncQueryResultToRowStream(Handler> handler) { return ar -> { if (ar.succeeded()) { + AsyncSQLRowStream rowStream; try { - handler.handle(Future.succeededFuture(new AsyncSQLRowStream(ar.result()))); + rowStream = new AsyncSQLRowStream(ar.result()); } catch (Throwable e) { handler.handle(Future.failedFuture(e)); + return; } + handler.handle(Future.succeededFuture(rowStream)); } else { handler.handle(Future.failedFuture(ar.cause())); } @@ -341,11 +354,14 @@ private ResultSet queryResultToResultSet(QueryResult qr) { private Handler> handleAsyncUpdateResultToResultSet(Handler> handler) { return ar -> { if (ar.succeeded()) { + UpdateResult result; try { - handler.handle(Future.succeededFuture(queryResultToUpdateResult(ar.result()))); + result = queryResultToUpdateResult(ar.result()); } catch (Throwable e) { handler.handle(Future.failedFuture(e)); + return; } + handler.handle(Future.succeededFuture(result)); } else { handler.handle(Future.failedFuture(ar.cause())); } diff --git a/src/test/java/io/vertx/ext/asyncsql/SQLTestBase.java b/src/test/java/io/vertx/ext/asyncsql/SQLTestBase.java index 216ca5c6..25c81553 100644 --- a/src/test/java/io/vertx/ext/asyncsql/SQLTestBase.java +++ b/src/test/java/io/vertx/ext/asyncsql/SQLTestBase.java @@ -37,8 +37,10 @@ import java.util.List; import java.util.Map; import java.util.concurrent.atomic.AtomicInteger; +import java.util.function.BiConsumer; import java.util.function.Supplier; +import static java.util.concurrent.TimeUnit.*; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; @@ -857,4 +859,44 @@ public void handle(AsyncResult sqlConnectionAsyncResult) { clientNoDatabase.getConnection(handler); } + @Test + public void testUnhandledExceptionInHandlerResultSet(TestContext testContext) { + this.testUnhandledExceptionInHandler(testContext, (sqlConnection, handler) -> { + sqlConnection.query("SELECT name FROM test_table", handler); + }); + } + + @Test + public void testUnhandledExceptionInHandlerRowStream(TestContext testContext) { + this.testUnhandledExceptionInHandler(testContext, (sqlConnection, handler) -> { + sqlConnection.queryStream("SELECT name FROM test_table", handler); + }); + } + + @Test + public void testUnhandledExceptionInHandlerUpdateResult(TestContext testContext) { + this.testUnhandledExceptionInHandler(testContext, (sqlConnection, handler) -> { + sqlConnection.update("INSERT INTO test_table (name) VALUES ('pimpo')", handler); + }); + } + + private void testUnhandledExceptionInHandler(TestContext testContext, BiConsumer>> testMethod) { + AtomicInteger count = new AtomicInteger(); + Async async = testContext.async(); + Context context = vertx.getOrCreateContext(); + context.exceptionHandler(t -> { + async.complete(); + }).runOnContext(v -> { + client.getConnection(testContext.asyncAssertSuccess(connection -> { + setupSimpleTable(connection, testContext.asyncAssertSuccess(st -> { + testMethod.accept(connection, ar -> { + count.incrementAndGet(); + throw new IndexOutOfBoundsException(); + }); + })); + })); + }); + async.await(MILLISECONDS.convert(5, SECONDS)); + assertEquals(1, count.get()); + } } From 2e79beb617fce9952c14b2a0cfd04f46d43a9ac7 Mon Sep 17 00:00:00 2001 From: Julien Viet Date: Fri, 11 May 2018 13:21:03 +0200 Subject: [PATCH 04/18] Releasing 3.5.2.CR1 --- pom.xml | 4 ++-- src/main/asciidoc/groovy/index.adoc | 6 +++--- src/main/asciidoc/java/index.adoc | 6 +++--- src/main/asciidoc/js/index.adoc | 6 +++--- src/main/asciidoc/kotlin/index.adoc | 6 +++--- src/main/asciidoc/ruby/index.adoc | 6 +++--- 6 files changed, 17 insertions(+), 17 deletions(-) diff --git a/pom.xml b/pom.xml index 8fb817a2..73adffb3 100644 --- a/pom.xml +++ b/pom.xml @@ -9,12 +9,12 @@ 4.0.0 vertx-mysql-postgresql-client - 3.5.2-SNAPSHOT + 3.5.2.CR1 Vert.x MySQL/PostgreSQL Client - 3.5.2-SNAPSHOT + 3.5.2.CR1 2.12.4 0.2.21 true diff --git a/src/main/asciidoc/groovy/index.adoc b/src/main/asciidoc/groovy/index.adoc index 4dcc1b18..5aec7333 100644 --- a/src/main/asciidoc/groovy/index.adoc +++ b/src/main/asciidoc/groovy/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.1 (the client) +* vertx-mysql-postgresql-client 3.5.2.CR1 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.1 + 3.5.2.CR1 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.1' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR1' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/java/index.adoc b/src/main/asciidoc/java/index.adoc index 987ae47e..762608c0 100644 --- a/src/main/asciidoc/java/index.adoc +++ b/src/main/asciidoc/java/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.1 (the client) +* vertx-mysql-postgresql-client 3.5.2.CR1 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.1 + 3.5.2.CR1 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.1' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR1' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/js/index.adoc b/src/main/asciidoc/js/index.adoc index d141e76c..80182cb9 100644 --- a/src/main/asciidoc/js/index.adoc +++ b/src/main/asciidoc/js/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.1 (the client) +* vertx-mysql-postgresql-client 3.5.2.CR1 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.1 + 3.5.2.CR1 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.1' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR1' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/kotlin/index.adoc b/src/main/asciidoc/kotlin/index.adoc index 3ba8f47f..2528c212 100644 --- a/src/main/asciidoc/kotlin/index.adoc +++ b/src/main/asciidoc/kotlin/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.1 (the client) +* vertx-mysql-postgresql-client 3.5.2.CR1 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.1 + 3.5.2.CR1 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.1' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR1' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/ruby/index.adoc b/src/main/asciidoc/ruby/index.adoc index 8245675e..0020a7e6 100644 --- a/src/main/asciidoc/ruby/index.adoc +++ b/src/main/asciidoc/ruby/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.1 (the client) +* vertx-mysql-postgresql-client 3.5.2.CR1 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.1 + 3.5.2.CR1 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.1' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR1' ---- === In an application using a vert.x distributions From 363a97175fbea8376ba0892c02ec44d9cabda104 Mon Sep 17 00:00:00 2001 From: Julien Viet Date: Fri, 11 May 2018 13:21:57 +0200 Subject: [PATCH 05/18] Releasing 3.5.2-SNAPSHOT --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 73adffb3..8fb817a2 100644 --- a/pom.xml +++ b/pom.xml @@ -9,12 +9,12 @@ 4.0.0 vertx-mysql-postgresql-client - 3.5.2.CR1 + 3.5.2-SNAPSHOT Vert.x MySQL/PostgreSQL Client - 3.5.2.CR1 + 3.5.2-SNAPSHOT 2.12.4 0.2.21 true From 64d4d96778adacfddaf5b93098b49ddf16b89869 Mon Sep 17 00:00:00 2001 From: Julien Viet Date: Mon, 21 May 2018 09:58:17 +0200 Subject: [PATCH 06/18] Releasing 3.5.2.CR2 --- pom.xml | 4 ++-- src/main/asciidoc/groovy/index.adoc | 6 +++--- src/main/asciidoc/java/index.adoc | 6 +++--- src/main/asciidoc/js/index.adoc | 6 +++--- src/main/asciidoc/kotlin/index.adoc | 6 +++--- src/main/asciidoc/ruby/index.adoc | 6 +++--- 6 files changed, 17 insertions(+), 17 deletions(-) diff --git a/pom.xml b/pom.xml index 8fb817a2..8683a06d 100644 --- a/pom.xml +++ b/pom.xml @@ -9,12 +9,12 @@ 4.0.0 vertx-mysql-postgresql-client - 3.5.2-SNAPSHOT + 3.5.2.CR2 Vert.x MySQL/PostgreSQL Client - 3.5.2-SNAPSHOT + 3.5.2.CR2 2.12.4 0.2.21 true diff --git a/src/main/asciidoc/groovy/index.adoc b/src/main/asciidoc/groovy/index.adoc index 5aec7333..f28b0777 100644 --- a/src/main/asciidoc/groovy/index.adoc +++ b/src/main/asciidoc/groovy/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.2.CR1 (the client) +* vertx-mysql-postgresql-client 3.5.2.CR2 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.2.CR1 + 3.5.2.CR2 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR1' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR2' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/java/index.adoc b/src/main/asciidoc/java/index.adoc index 762608c0..c534c588 100644 --- a/src/main/asciidoc/java/index.adoc +++ b/src/main/asciidoc/java/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.2.CR1 (the client) +* vertx-mysql-postgresql-client 3.5.2.CR2 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.2.CR1 + 3.5.2.CR2 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR1' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR2' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/js/index.adoc b/src/main/asciidoc/js/index.adoc index 80182cb9..ff48b2eb 100644 --- a/src/main/asciidoc/js/index.adoc +++ b/src/main/asciidoc/js/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.2.CR1 (the client) +* vertx-mysql-postgresql-client 3.5.2.CR2 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.2.CR1 + 3.5.2.CR2 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR1' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR2' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/kotlin/index.adoc b/src/main/asciidoc/kotlin/index.adoc index 2528c212..82cb2ab2 100644 --- a/src/main/asciidoc/kotlin/index.adoc +++ b/src/main/asciidoc/kotlin/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.2.CR1 (the client) +* vertx-mysql-postgresql-client 3.5.2.CR2 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.2.CR1 + 3.5.2.CR2 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR1' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR2' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/ruby/index.adoc b/src/main/asciidoc/ruby/index.adoc index 0020a7e6..e6b10650 100644 --- a/src/main/asciidoc/ruby/index.adoc +++ b/src/main/asciidoc/ruby/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.2.CR1 (the client) +* vertx-mysql-postgresql-client 3.5.2.CR2 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.2.CR1 + 3.5.2.CR2 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR1' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR2' ---- === In an application using a vert.x distributions From 48ce2ec800b6121bbf7ebf7cf78dc8890e03d988 Mon Sep 17 00:00:00 2001 From: Julien Viet Date: Mon, 21 May 2018 09:59:37 +0200 Subject: [PATCH 07/18] Releasing 3.5.2-SNAPSHOT --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 8683a06d..8fb817a2 100644 --- a/pom.xml +++ b/pom.xml @@ -9,12 +9,12 @@ 4.0.0 vertx-mysql-postgresql-client - 3.5.2.CR2 + 3.5.2-SNAPSHOT Vert.x MySQL/PostgreSQL Client - 3.5.2.CR2 + 3.5.2-SNAPSHOT 2.12.4 0.2.21 true From b7ac968bd6beff32dbfe2e46e618139f1f180d13 Mon Sep 17 00:00:00 2001 From: Julien Viet Date: Mon, 28 May 2018 17:29:58 +0200 Subject: [PATCH 08/18] Releasing 3.5.2.CR3 --- pom.xml | 4 ++-- src/main/asciidoc/groovy/index.adoc | 6 +++--- src/main/asciidoc/java/index.adoc | 6 +++--- src/main/asciidoc/js/index.adoc | 6 +++--- src/main/asciidoc/kotlin/index.adoc | 6 +++--- src/main/asciidoc/ruby/index.adoc | 6 +++--- 6 files changed, 17 insertions(+), 17 deletions(-) diff --git a/pom.xml b/pom.xml index 8fb817a2..f6a8d276 100644 --- a/pom.xml +++ b/pom.xml @@ -9,12 +9,12 @@ 4.0.0 vertx-mysql-postgresql-client - 3.5.2-SNAPSHOT + 3.5.2.CR3 Vert.x MySQL/PostgreSQL Client - 3.5.2-SNAPSHOT + 3.5.2.CR3 2.12.4 0.2.21 true diff --git a/src/main/asciidoc/groovy/index.adoc b/src/main/asciidoc/groovy/index.adoc index f28b0777..6f4cc0d8 100644 --- a/src/main/asciidoc/groovy/index.adoc +++ b/src/main/asciidoc/groovy/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.2.CR2 (the client) +* vertx-mysql-postgresql-client 3.5.2.CR3 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.2.CR2 + 3.5.2.CR3 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR2' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR3' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/java/index.adoc b/src/main/asciidoc/java/index.adoc index c534c588..b4ca2820 100644 --- a/src/main/asciidoc/java/index.adoc +++ b/src/main/asciidoc/java/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.2.CR2 (the client) +* vertx-mysql-postgresql-client 3.5.2.CR3 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.2.CR2 + 3.5.2.CR3 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR2' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR3' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/js/index.adoc b/src/main/asciidoc/js/index.adoc index ff48b2eb..e0b652cd 100644 --- a/src/main/asciidoc/js/index.adoc +++ b/src/main/asciidoc/js/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.2.CR2 (the client) +* vertx-mysql-postgresql-client 3.5.2.CR3 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.2.CR2 + 3.5.2.CR3 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR2' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR3' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/kotlin/index.adoc b/src/main/asciidoc/kotlin/index.adoc index 82cb2ab2..4a46e5c2 100644 --- a/src/main/asciidoc/kotlin/index.adoc +++ b/src/main/asciidoc/kotlin/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.2.CR2 (the client) +* vertx-mysql-postgresql-client 3.5.2.CR3 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.2.CR2 + 3.5.2.CR3 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR2' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR3' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/ruby/index.adoc b/src/main/asciidoc/ruby/index.adoc index e6b10650..ced0ada5 100644 --- a/src/main/asciidoc/ruby/index.adoc +++ b/src/main/asciidoc/ruby/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.2.CR2 (the client) +* vertx-mysql-postgresql-client 3.5.2.CR3 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.2.CR2 + 3.5.2.CR3 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR2' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR3' ---- === In an application using a vert.x distributions From 526c852d5a76c3b0b5a7a9b6562b672a6614f2c3 Mon Sep 17 00:00:00 2001 From: Julien Viet Date: Mon, 28 May 2018 17:30:52 +0200 Subject: [PATCH 09/18] Releasing 3.5.2-SNAPSHOT --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index f6a8d276..8fb817a2 100644 --- a/pom.xml +++ b/pom.xml @@ -9,12 +9,12 @@ 4.0.0 vertx-mysql-postgresql-client - 3.5.2.CR3 + 3.5.2-SNAPSHOT Vert.x MySQL/PostgreSQL Client - 3.5.2.CR3 + 3.5.2-SNAPSHOT 2.12.4 0.2.21 true From c54baa09e874b00ae507b874c522878485fd25d1 Mon Sep 17 00:00:00 2001 From: Julien Viet Date: Mon, 4 Jun 2018 17:20:16 +0200 Subject: [PATCH 10/18] Releasing 3.5.2 --- pom.xml | 4 ++-- src/main/asciidoc/groovy/index.adoc | 6 +++--- src/main/asciidoc/java/index.adoc | 6 +++--- src/main/asciidoc/js/index.adoc | 6 +++--- src/main/asciidoc/kotlin/index.adoc | 6 +++--- src/main/asciidoc/ruby/index.adoc | 6 +++--- 6 files changed, 17 insertions(+), 17 deletions(-) diff --git a/pom.xml b/pom.xml index 8fb817a2..4359166c 100644 --- a/pom.xml +++ b/pom.xml @@ -9,12 +9,12 @@ 4.0.0 vertx-mysql-postgresql-client - 3.5.2-SNAPSHOT + 3.5.2 Vert.x MySQL/PostgreSQL Client - 3.5.2-SNAPSHOT + 3.5.2 2.12.4 0.2.21 true diff --git a/src/main/asciidoc/groovy/index.adoc b/src/main/asciidoc/groovy/index.adoc index 6f4cc0d8..4fea0272 100644 --- a/src/main/asciidoc/groovy/index.adoc +++ b/src/main/asciidoc/groovy/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.2.CR3 (the client) +* vertx-mysql-postgresql-client 3.5.2 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.2.CR3 + 3.5.2 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR3' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/java/index.adoc b/src/main/asciidoc/java/index.adoc index b4ca2820..1406ea86 100644 --- a/src/main/asciidoc/java/index.adoc +++ b/src/main/asciidoc/java/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.2.CR3 (the client) +* vertx-mysql-postgresql-client 3.5.2 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.2.CR3 + 3.5.2 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR3' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/js/index.adoc b/src/main/asciidoc/js/index.adoc index e0b652cd..9676d155 100644 --- a/src/main/asciidoc/js/index.adoc +++ b/src/main/asciidoc/js/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.2.CR3 (the client) +* vertx-mysql-postgresql-client 3.5.2 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.2.CR3 + 3.5.2 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR3' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/kotlin/index.adoc b/src/main/asciidoc/kotlin/index.adoc index 4a46e5c2..ffdb0e14 100644 --- a/src/main/asciidoc/kotlin/index.adoc +++ b/src/main/asciidoc/kotlin/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.2.CR3 (the client) +* vertx-mysql-postgresql-client 3.5.2 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.2.CR3 + 3.5.2 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR3' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/ruby/index.adoc b/src/main/asciidoc/ruby/index.adoc index ced0ada5..c163b111 100644 --- a/src/main/asciidoc/ruby/index.adoc +++ b/src/main/asciidoc/ruby/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.2.CR3 (the client) +* vertx-mysql-postgresql-client 3.5.2 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.2.CR3 + 3.5.2 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2.CR3' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2' ---- === In an application using a vert.x distributions From 4bd2e773494c9f4d9c598622b0688f9b1889aaa4 Mon Sep 17 00:00:00 2001 From: Julien Viet Date: Tue, 5 Jun 2018 08:31:36 +0200 Subject: [PATCH 11/18] Releasing 3.5.3-SNAPSHOT --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 4359166c..0ae8a570 100644 --- a/pom.xml +++ b/pom.xml @@ -9,12 +9,12 @@ 4.0.0 vertx-mysql-postgresql-client - 3.5.2 + 3.5.3-SNAPSHOT Vert.x MySQL/PostgreSQL Client - 3.5.2 + 3.5.3-SNAPSHOT 2.12.4 0.2.21 true From 5dbe15473633b0f5f411786f58598a30def179f0 Mon Sep 17 00:00:00 2001 From: Julien Viet Date: Thu, 7 Jun 2018 13:07:28 +0200 Subject: [PATCH 12/18] Add ci trigger --- Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index da0a4307..bb138d1f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,3 +1,4 @@ +library "vertx-shared-library@master" pipeline { agent any tools { @@ -13,6 +14,7 @@ pipeline { } steps { sh 'mvn -U -B -Dsurefire.reportNameSuffix=OracleJDK_8 -DskipTests clean deploy -s $MAVEN_SETTINGS_PATH' + triggerWorkflow() } post { // always { From 793d145ab89eac18d02c3318820d0f38865f388b Mon Sep 17 00:00:00 2001 From: Julien Viet Date: Thu, 5 Jul 2018 08:22:18 +0200 Subject: [PATCH 13/18] Releasing 3.5.3.CR1 --- pom.xml | 4 ++-- src/main/asciidoc/groovy/index.adoc | 6 +++--- src/main/asciidoc/java/index.adoc | 6 +++--- src/main/asciidoc/js/index.adoc | 6 +++--- src/main/asciidoc/kotlin/index.adoc | 6 +++--- src/main/asciidoc/ruby/index.adoc | 6 +++--- 6 files changed, 17 insertions(+), 17 deletions(-) diff --git a/pom.xml b/pom.xml index 0ae8a570..b6d4d69b 100644 --- a/pom.xml +++ b/pom.xml @@ -9,12 +9,12 @@ 4.0.0 vertx-mysql-postgresql-client - 3.5.3-SNAPSHOT + 3.5.3.CR1 Vert.x MySQL/PostgreSQL Client - 3.5.3-SNAPSHOT + 3.5.3.CR1 2.12.4 0.2.21 true diff --git a/src/main/asciidoc/groovy/index.adoc b/src/main/asciidoc/groovy/index.adoc index 4fea0272..5b8ef585 100644 --- a/src/main/asciidoc/groovy/index.adoc +++ b/src/main/asciidoc/groovy/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.2 (the client) +* vertx-mysql-postgresql-client 3.5.3.CR1 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.2 + 3.5.3.CR1 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.3.CR1' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/java/index.adoc b/src/main/asciidoc/java/index.adoc index 1406ea86..2559453b 100644 --- a/src/main/asciidoc/java/index.adoc +++ b/src/main/asciidoc/java/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.2 (the client) +* vertx-mysql-postgresql-client 3.5.3.CR1 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.2 + 3.5.3.CR1 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.3.CR1' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/js/index.adoc b/src/main/asciidoc/js/index.adoc index 9676d155..79334731 100644 --- a/src/main/asciidoc/js/index.adoc +++ b/src/main/asciidoc/js/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.2 (the client) +* vertx-mysql-postgresql-client 3.5.3.CR1 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.2 + 3.5.3.CR1 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.3.CR1' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/kotlin/index.adoc b/src/main/asciidoc/kotlin/index.adoc index ffdb0e14..32444175 100644 --- a/src/main/asciidoc/kotlin/index.adoc +++ b/src/main/asciidoc/kotlin/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.2 (the client) +* vertx-mysql-postgresql-client 3.5.3.CR1 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.2 + 3.5.3.CR1 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.3.CR1' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/ruby/index.adoc b/src/main/asciidoc/ruby/index.adoc index c163b111..1038ad2b 100644 --- a/src/main/asciidoc/ruby/index.adoc +++ b/src/main/asciidoc/ruby/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.2 (the client) +* vertx-mysql-postgresql-client 3.5.3.CR1 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.2 + 3.5.3.CR1 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.2' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.3.CR1' ---- === In an application using a vert.x distributions From 8aa5d8c11b637fdd4ab43a28e7dbfcdaf7818861 Mon Sep 17 00:00:00 2001 From: Julien Viet Date: Thu, 5 Jul 2018 08:23:12 +0200 Subject: [PATCH 14/18] Releasing 3.5.3-SNAPSHOT --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index b6d4d69b..0ae8a570 100644 --- a/pom.xml +++ b/pom.xml @@ -9,12 +9,12 @@ 4.0.0 vertx-mysql-postgresql-client - 3.5.3.CR1 + 3.5.3-SNAPSHOT Vert.x MySQL/PostgreSQL Client - 3.5.3.CR1 + 3.5.3-SNAPSHOT 2.12.4 0.2.21 true From 10495916ee3140d2d505288270f69ec6967654e6 Mon Sep 17 00:00:00 2001 From: Julien Viet Date: Wed, 11 Jul 2018 09:20:45 +0200 Subject: [PATCH 15/18] Releasing 3.5.3 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 0ae8a570..b5ab1553 100644 --- a/pom.xml +++ b/pom.xml @@ -9,12 +9,12 @@ 4.0.0 vertx-mysql-postgresql-client - 3.5.3-SNAPSHOT + 3.5.3 Vert.x MySQL/PostgreSQL Client - 3.5.3-SNAPSHOT + 3.5.3 2.12.4 0.2.21 true From 3fc4471dc67483cd6e745da67bddab90da18d112 Mon Sep 17 00:00:00 2001 From: Julien Viet Date: Thu, 12 Jul 2018 11:58:12 +0200 Subject: [PATCH 16/18] Releasing 3.5.4-SNAPSHOT --- pom.xml | 4 ++-- src/main/asciidoc/groovy/index.adoc | 6 +++--- src/main/asciidoc/java/index.adoc | 6 +++--- src/main/asciidoc/js/index.adoc | 6 +++--- src/main/asciidoc/kotlin/index.adoc | 6 +++--- src/main/asciidoc/ruby/index.adoc | 6 +++--- 6 files changed, 17 insertions(+), 17 deletions(-) diff --git a/pom.xml b/pom.xml index b5ab1553..0d81c362 100644 --- a/pom.xml +++ b/pom.xml @@ -9,12 +9,12 @@ 4.0.0 vertx-mysql-postgresql-client - 3.5.3 + 3.5.4-SNAPSHOT Vert.x MySQL/PostgreSQL Client - 3.5.3 + 3.5.4-SNAPSHOT 2.12.4 0.2.21 true diff --git a/src/main/asciidoc/groovy/index.adoc b/src/main/asciidoc/groovy/index.adoc index 5b8ef585..e52d01a1 100644 --- a/src/main/asciidoc/groovy/index.adoc +++ b/src/main/asciidoc/groovy/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.3.CR1 (the client) +* vertx-mysql-postgresql-client 3.5.3 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.3.CR1 + 3.5.3 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.3.CR1' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.3' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/java/index.adoc b/src/main/asciidoc/java/index.adoc index 2559453b..66695565 100644 --- a/src/main/asciidoc/java/index.adoc +++ b/src/main/asciidoc/java/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.3.CR1 (the client) +* vertx-mysql-postgresql-client 3.5.3 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.3.CR1 + 3.5.3 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.3.CR1' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.3' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/js/index.adoc b/src/main/asciidoc/js/index.adoc index 79334731..f158b4af 100644 --- a/src/main/asciidoc/js/index.adoc +++ b/src/main/asciidoc/js/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.3.CR1 (the client) +* vertx-mysql-postgresql-client 3.5.3 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.3.CR1 + 3.5.3 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.3.CR1' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.3' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/kotlin/index.adoc b/src/main/asciidoc/kotlin/index.adoc index 32444175..29b3f44a 100644 --- a/src/main/asciidoc/kotlin/index.adoc +++ b/src/main/asciidoc/kotlin/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.3.CR1 (the client) +* vertx-mysql-postgresql-client 3.5.3 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.3.CR1 + 3.5.3 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.3.CR1' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.3' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/ruby/index.adoc b/src/main/asciidoc/ruby/index.adoc index 1038ad2b..f3741ca4 100644 --- a/src/main/asciidoc/ruby/index.adoc +++ b/src/main/asciidoc/ruby/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.3.CR1 (the client) +* vertx-mysql-postgresql-client 3.5.3 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.3.CR1 + 3.5.3 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.3.CR1' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.3' ---- === In an application using a vert.x distributions From bb1549833d7d4c9b34f4cbc9cf6019bd15490f1d Mon Sep 17 00:00:00 2001 From: Julien Viet Date: Thu, 27 Sep 2018 11:29:29 +0200 Subject: [PATCH 17/18] Releasing 3.5.4 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 0d81c362..93f0109f 100644 --- a/pom.xml +++ b/pom.xml @@ -9,12 +9,12 @@ 4.0.0 vertx-mysql-postgresql-client - 3.5.4-SNAPSHOT + 3.5.4 Vert.x MySQL/PostgreSQL Client - 3.5.4-SNAPSHOT + 3.5.4 2.12.4 0.2.21 true From 7d1717abe70929f365c63986b0bc2c90f45de189 Mon Sep 17 00:00:00 2001 From: Julien Viet Date: Wed, 3 Oct 2018 09:10:35 +0200 Subject: [PATCH 18/18] Releasing 3.5.5-SNAPSHOT --- pom.xml | 4 ++-- src/main/asciidoc/groovy/index.adoc | 6 +++--- src/main/asciidoc/java/index.adoc | 6 +++--- src/main/asciidoc/js/index.adoc | 6 +++--- src/main/asciidoc/kotlin/index.adoc | 6 +++--- src/main/asciidoc/ruby/index.adoc | 6 +++--- 6 files changed, 17 insertions(+), 17 deletions(-) diff --git a/pom.xml b/pom.xml index 93f0109f..9c3d0454 100644 --- a/pom.xml +++ b/pom.xml @@ -9,12 +9,12 @@ 4.0.0 vertx-mysql-postgresql-client - 3.5.4 + 3.5.5-SNAPSHOT Vert.x MySQL/PostgreSQL Client - 3.5.4 + 3.5.5-SNAPSHOT 2.12.4 0.2.21 true diff --git a/src/main/asciidoc/groovy/index.adoc b/src/main/asciidoc/groovy/index.adoc index e52d01a1..50a63f86 100644 --- a/src/main/asciidoc/groovy/index.adoc +++ b/src/main/asciidoc/groovy/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.3 (the client) +* vertx-mysql-postgresql-client 3.5.4 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.3 + 3.5.4 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.3' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.4' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/java/index.adoc b/src/main/asciidoc/java/index.adoc index 66695565..79dde254 100644 --- a/src/main/asciidoc/java/index.adoc +++ b/src/main/asciidoc/java/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.3 (the client) +* vertx-mysql-postgresql-client 3.5.4 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.3 + 3.5.4 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.3' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.4' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/js/index.adoc b/src/main/asciidoc/js/index.adoc index f158b4af..a83eac21 100644 --- a/src/main/asciidoc/js/index.adoc +++ b/src/main/asciidoc/js/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.3 (the client) +* vertx-mysql-postgresql-client 3.5.4 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.3 + 3.5.4 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.3' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.4' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/kotlin/index.adoc b/src/main/asciidoc/kotlin/index.adoc index 29b3f44a..7f3bad62 100644 --- a/src/main/asciidoc/kotlin/index.adoc +++ b/src/main/asciidoc/kotlin/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.3 (the client) +* vertx-mysql-postgresql-client 3.5.4 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.3 + 3.5.4 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.3' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.4' ---- === In an application using a vert.x distributions diff --git a/src/main/asciidoc/ruby/index.adoc b/src/main/asciidoc/ruby/index.adoc index f3741ca4..f6c76764 100644 --- a/src/main/asciidoc/ruby/index.adoc +++ b/src/main/asciidoc/ruby/index.adoc @@ -15,7 +15,7 @@ application. To use this client, you need to add the following jar to your `CLASSPATH`: -* vertx-mysql-postgresql-client 3.5.3 (the client) +* vertx-mysql-postgresql-client 3.5.4 (the client) * scala-library 2.11.4 * the postgress-async-2.11 and mysdql-async-2.11 from https://github.com/mauricio/postgresql-async * joda time @@ -33,7 +33,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de io.vertx vertx-mysql-postgresql-client - 3.5.3 + 3.5.4 ---- @@ -41,7 +41,7 @@ If you are building a _Fat-jar_ using Maven or Gradle, just add the following de [source,groovy,subs="+attributes"] ---- -compile 'io.vertx:vertx-mysql-postgresql-client:3.5.3' +compile 'io.vertx:vertx-mysql-postgresql-client:3.5.4' ---- === In an application using a vert.x distributions