From 9127bc1d90c1a80a0f61f1ec782be1fdbab0e8aa Mon Sep 17 00:00:00 2001 From: MagonxESP Date: Mon, 17 Jun 2024 16:00:42 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20bump=20version=20to=20v0.2.7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ README.md | 4 ++-- core/build.gradle.kts | 2 +- spring-boot/build.gradle.kts | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93918ae..93fc869 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.2.7] - 2024-06-17 + +### Miscellaneous Tasks + +- Disable parallel builds + ## [0.2.6] - 2024-06-17 ### Miscellaneous Tasks diff --git a/README.md b/README.md index 53e5ab5..e0294cb 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Add the dependency on your `build.gradle.kts` ```kotlin dependencies { - implementation("io.github.magonxesp:criteria-core:0.2.6") + implementation("io.github.magonxesp:criteria-core:0.2.7") } ``` @@ -18,7 +18,7 @@ For Spring Boot and Spring Data JPA add the spring-boot dependency. ```kotlin dependencies { - implementation("io.github.magonxesp:criteria-spring-boot:0.2.6") + implementation("io.github.magonxesp:criteria-spring-boot:0.2.7") } ``` diff --git a/core/build.gradle.kts b/core/build.gradle.kts index a4e9aca..9769128 100644 --- a/core/build.gradle.kts +++ b/core/build.gradle.kts @@ -12,7 +12,7 @@ plugins { } group = "io.github.magonxesp" -version = "0.2.6" +version = "0.2.7" mavenPublishing { coordinates(group as String, "criteria-core", version as String) diff --git a/spring-boot/build.gradle.kts b/spring-boot/build.gradle.kts index 01c63cb..c499e91 100644 --- a/spring-boot/build.gradle.kts +++ b/spring-boot/build.gradle.kts @@ -13,7 +13,7 @@ plugins { } group = "io.github.magonxesp" -version = "0.2.6" +version = "0.2.7" mavenPublishing { coordinates(group as String, "criteria-spring-boot", version as String)