From c1dc2790ef85f070b10295643a0ab40279f7fe6f Mon Sep 17 00:00:00 2001 From: oshai Date: Fri, 16 Jun 2023 11:37:47 +0300 Subject: [PATCH 1/5] bump version to 2.2.1 --- README.md | 8 ++++---- build.gradle.kts | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index f95eb0da..d3c4f145 100644 --- a/README.md +++ b/README.md @@ -39,14 +39,14 @@ For docs and info see the [wiki](https://github.com/jasync-sql/jasync-sql/wiki). com.github.jasync-sql jasync-mysql - 2.1.25 + 2.2.0 com.github.jasync-sql jasync-postgresql - 2.1.25 + 2.2.0 ``` @@ -56,9 +56,9 @@ For docs and info see the [wiki](https://github.com/jasync-sql/jasync-sql/wiki). ```gradle dependencies { // mysql - compile 'com.github.jasync-sql:jasync-mysql:2.1.25' + compile 'com.github.jasync-sql:jasync-mysql:2.2.0' // postgresql - compile 'com.github.jasync-sql:jasync-postgresql:2.1.25' + compile 'com.github.jasync-sql:jasync-postgresql:2.2.0' } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 7af50e73..ea0e7e12 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -24,7 +24,7 @@ apply(plugin = "io.github.gradle-nexus.publish-plugin") allprojects { group = "com.github.jasync-sql" - version = "2.2.0" + version = "2.2.1" apply(plugin = "kotlin") apply(plugin = "maven-publish") From ede4bb200d022b94fa4be1494803b8d5ec09d826 Mon Sep 17 00:00:00 2001 From: Ohad Shai Date: Thu, 22 Jun 2023 21:42:29 +0300 Subject: [PATCH 2/5] Update gradle.properties --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index ab492762..2f075fef 100644 --- a/gradle.properties +++ b/gradle.properties @@ -6,7 +6,7 @@ SL4J_VERSION=2.0.7 JODA_VERSION=2.12.5 JODA_CONVERT_VERSION=2.2.3 NETTY_VERSION=4.1.93.Final -KOTLIN_LOGGING_VERSION=4.0.0-beta-29 +KOTLIN_LOGGING_VERSION=4.0.0 SCRAM_CLIENT_VERSION=2.1 R2DBC_SPI_VERSION=1.0.0.RELEASE REACTOR_CORE_VERSION=3.5.7 From 32fbdeb6b2d1291555f3a47c1e30fdfd5e8b7d79 Mon Sep 17 00:00:00 2001 From: Ohad Shai Date: Thu, 13 Jul 2023 02:53:21 +0300 Subject: [PATCH 3/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d3c4f145..8f644ac3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -jasync-sql + [![Chat at https://gitter.im/jasync-sql/support](https://badges.gitter.im//jasync-sql/support.svg)](https://gitter.im/jasync-sql/support) [![Maven Central](https://img.shields.io/maven-central/v/com.github.jasync-sql/jasync-common.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.github.jasync-sql%22%20AND%20a:%22jasync-common%22) ![Build Status](https://github.com/jasync-sql/jasync-sql/actions/workflows/ci.yml/badge.svg?branch=master) [![Apache License V.2](https://img.shields.io/badge/license-Apache%20V.2-blue.svg)](https://github.com/jasync-sql/jasync-sql/blob/master/LICENSE) [![codecov](https://codecov.io/gh/jasync-sql/jasync-sql/branch/master/graph/badge.svg)](https://codecov.io/gh/jasync-sql/jasync-sql) [![Awesome Kotlin Badge](https://kotlin.link/awesome-kotlin.svg)](https://github.com/KotlinBy/awesome-kotlin#libraries-frameworks-database) From 8f1d26747df4e8e458e94634eb7f886b603195aa Mon Sep 17 00:00:00 2001 From: Ohad Shai Date: Thu, 13 Jul 2023 03:37:12 +0300 Subject: [PATCH 4/5] upgrade kotlin-logging to 5.0.0-beta-04 (#403) --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 2f075fef..5ee34f91 100644 --- a/gradle.properties +++ b/gradle.properties @@ -6,7 +6,7 @@ SL4J_VERSION=2.0.7 JODA_VERSION=2.12.5 JODA_CONVERT_VERSION=2.2.3 NETTY_VERSION=4.1.93.Final -KOTLIN_LOGGING_VERSION=4.0.0 +KOTLIN_LOGGING_VERSION=5.0.0-beta-04 SCRAM_CLIENT_VERSION=2.1 R2DBC_SPI_VERSION=1.0.0.RELEASE REACTOR_CORE_VERSION=3.5.7 From 44f5f9279caff8f1917bc43d8818911b02b6aec0 Mon Sep 17 00:00:00 2001 From: oshai Date: Thu, 13 Jul 2023 09:14:19 +0300 Subject: [PATCH 5/5] bump version to 2.2.2 --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index ea0e7e12..1d8cd0b9 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -24,7 +24,7 @@ apply(plugin = "io.github.gradle-nexus.publish-plugin") allprojects { group = "com.github.jasync-sql" - version = "2.2.1" + version = "2.2.2" apply(plugin = "kotlin") apply(plugin = "maven-publish")