From b5f972b77e32fcb4b411217b8d6684b495d06975 Mon Sep 17 00:00:00 2001 From: Otavio Santana Date: Mon, 31 Jul 2023 19:40:13 +0100 Subject: [PATCH 1/3] docs: update file at changelog Signed-off-by: Otavio Santana --- CHANGELOG.adoc | 2 ++ README.adoc | 10 +++++----- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 7a6706410..2dab79e3a 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -8,6 +8,8 @@ and this project adheres to https://semver.org/spec/v2.0.0.html[Semantic Version == [Unreleased] +== [1.0.1] - 2023-7-31 + == Fixed - Added no-args constructor into the injectable beans diff --git a/README.adoc b/README.adoc index 97795d839..a4ce01453 100644 --- a/README.adoc +++ b/README.adoc @@ -153,7 +153,7 @@ Eclipse JNoSQL offers a mapping implementation for Key-Value NoSQL types: org.eclipse.jnosql.mapping jnosql-mapping-key-value - 1.0.0 + 1.0.1 ---- @@ -246,7 +246,7 @@ Eclipse JNoSQL offers a mapping implementation for Column NoSQL types: org.eclipse.jnosql.mapping jnosql-mapping-column - 1.0.0 + 1.0.1 ---- @@ -343,7 +343,7 @@ Eclipse JNoSQL offers a mapping implementation for Document NoSQL types: org.eclipse.jnosql.mapping jnosql-mapping-document - 1.0.0 + 1.0.1 ---- @@ -441,7 +441,7 @@ Eclipse JNoSQL offers a mapping implementation for Graph NoSQL types: org.eclipse.jnosql.mapping jnosql-mapping-graph - 1.0.0 + 1.0.1 ---- @@ -676,7 +676,7 @@ Please take a look link:TESTING-GUIDELINE.adoc[at the file]. == Migration -This migration guide explains how to upgrade from Eclipse JNoSQL version 1.0.0-b6 to the latest version, taking into account two significant changes: upgrading to Jakarta EE 9 and reducing the scope of the Jakarta NoSQL specification to only run on the Mapping. The guide provides instructions on how to update package names and annotations to successfully migrate your Eclipse JNoSQL project. +This migration guide explains how to upgrade from Eclipse JNoSQL version 1.0.1-b6 to the latest version, taking into account two significant changes: upgrading to Jakarta EE 9 and reducing the scope of the Jakarta NoSQL specification to only run on the Mapping. The guide provides instructions on how to update package names and annotations to successfully migrate your Eclipse JNoSQL project. link:MIGRATION.adoc[Migration Guide] From 5d718c05d323efddc89199431897f61b39ad8f71 Mon Sep 17 00:00:00 2001 From: Otavio Santana Date: Mon, 31 Jul 2023 19:41:10 +0100 Subject: [PATCH 2/3] chore: update verion to 1.0.1 Signed-off-by: Otavio Santana --- jnosql-communication/jnosql-communication-column/pom.xml | 2 +- jnosql-communication/jnosql-communication-core/pom.xml | 2 +- jnosql-communication/jnosql-communication-document/pom.xml | 2 +- jnosql-communication/jnosql-communication-key-value/pom.xml | 2 +- jnosql-communication/jnosql-communication-query/pom.xml | 2 +- jnosql-communication/pom.xml | 2 +- jnosql-mapping/jnosql-mapping-api-core/pom.xml | 2 +- jnosql-mapping/jnosql-mapping-column/pom.xml | 2 +- jnosql-mapping/jnosql-mapping-core/pom.xml | 2 +- jnosql-mapping/jnosql-mapping-document/pom.xml | 2 +- jnosql-mapping/jnosql-mapping-graph/pom.xml | 2 +- jnosql-mapping/jnosql-mapping-key-value/pom.xml | 2 +- jnosql-mapping/pom.xml | 2 +- pom.xml | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/jnosql-communication/jnosql-communication-column/pom.xml b/jnosql-communication/jnosql-communication-column/pom.xml index 60cb6034c..d32d4e108 100644 --- a/jnosql-communication/jnosql-communication-column/pom.xml +++ b/jnosql-communication/jnosql-communication-column/pom.xml @@ -23,7 +23,7 @@ org.eclipse.jnosql.communication jnosql-communication - 1.0.1-SNAPSHOT + 1.0.1 jnosql-communication-column diff --git a/jnosql-communication/jnosql-communication-core/pom.xml b/jnosql-communication/jnosql-communication-core/pom.xml index 696b40295..1f6fac96a 100644 --- a/jnosql-communication/jnosql-communication-core/pom.xml +++ b/jnosql-communication/jnosql-communication-core/pom.xml @@ -22,7 +22,7 @@ org.eclipse.jnosql.communication jnosql-communication - 1.0.1-SNAPSHOT + 1.0.1 jnosql-communication-core diff --git a/jnosql-communication/jnosql-communication-document/pom.xml b/jnosql-communication/jnosql-communication-document/pom.xml index 8721fc158..9086c1848 100644 --- a/jnosql-communication/jnosql-communication-document/pom.xml +++ b/jnosql-communication/jnosql-communication-document/pom.xml @@ -23,7 +23,7 @@ org.eclipse.jnosql.communication jnosql-communication - 1.0.1-SNAPSHOT + 1.0.1 jnosql-communication-document diff --git a/jnosql-communication/jnosql-communication-key-value/pom.xml b/jnosql-communication/jnosql-communication-key-value/pom.xml index f0ad78924..35953598e 100644 --- a/jnosql-communication/jnosql-communication-key-value/pom.xml +++ b/jnosql-communication/jnosql-communication-key-value/pom.xml @@ -23,7 +23,7 @@ org.eclipse.jnosql.communication jnosql-communication - 1.0.1-SNAPSHOT + 1.0.1 jnosql-communication-key-value diff --git a/jnosql-communication/jnosql-communication-query/pom.xml b/jnosql-communication/jnosql-communication-query/pom.xml index 347729114..bb3ad21af 100644 --- a/jnosql-communication/jnosql-communication-query/pom.xml +++ b/jnosql-communication/jnosql-communication-query/pom.xml @@ -17,7 +17,7 @@ org.eclipse.jnosql.communication jnosql-communication - 1.0.1-SNAPSHOT + 1.0.1 jnosql-communication-query diff --git a/jnosql-communication/pom.xml b/jnosql-communication/pom.xml index 27da97aaf..914f28fc9 100644 --- a/jnosql-communication/pom.xml +++ b/jnosql-communication/pom.xml @@ -23,7 +23,7 @@ org.eclipse.jnosql jnosql-parent - 1.0.1-SNAPSHOT + 1.0.1 org.eclipse.jnosql.communication diff --git a/jnosql-mapping/jnosql-mapping-api-core/pom.xml b/jnosql-mapping/jnosql-mapping-api-core/pom.xml index 04bc37ea4..4b7960eab 100644 --- a/jnosql-mapping/jnosql-mapping-api-core/pom.xml +++ b/jnosql-mapping/jnosql-mapping-api-core/pom.xml @@ -21,7 +21,7 @@ org.eclipse.jnosql.mapping jnosql-mapping-parent - 1.0.1-SNAPSHOT + 1.0.1 jnosql-mapping-api-core diff --git a/jnosql-mapping/jnosql-mapping-column/pom.xml b/jnosql-mapping/jnosql-mapping-column/pom.xml index 1c03d2e77..10f8944ba 100644 --- a/jnosql-mapping/jnosql-mapping-column/pom.xml +++ b/jnosql-mapping/jnosql-mapping-column/pom.xml @@ -19,7 +19,7 @@ org.eclipse.jnosql.mapping jnosql-mapping-parent - 1.0.1-SNAPSHOT + 1.0.1 jnosql-mapping-column diff --git a/jnosql-mapping/jnosql-mapping-core/pom.xml b/jnosql-mapping/jnosql-mapping-core/pom.xml index c1d6efc0e..4fbdbf830 100644 --- a/jnosql-mapping/jnosql-mapping-core/pom.xml +++ b/jnosql-mapping/jnosql-mapping-core/pom.xml @@ -21,7 +21,7 @@ org.eclipse.jnosql.mapping jnosql-mapping-parent - 1.0.1-SNAPSHOT + 1.0.1 jnosql-mapping-core diff --git a/jnosql-mapping/jnosql-mapping-document/pom.xml b/jnosql-mapping/jnosql-mapping-document/pom.xml index f553a41cb..1efaeb10e 100644 --- a/jnosql-mapping/jnosql-mapping-document/pom.xml +++ b/jnosql-mapping/jnosql-mapping-document/pom.xml @@ -20,7 +20,7 @@ org.eclipse.jnosql.mapping jnosql-mapping-parent - 1.0.1-SNAPSHOT + 1.0.1 jnosql-mapping-document diff --git a/jnosql-mapping/jnosql-mapping-graph/pom.xml b/jnosql-mapping/jnosql-mapping-graph/pom.xml index 9bf1a3a00..187341935 100644 --- a/jnosql-mapping/jnosql-mapping-graph/pom.xml +++ b/jnosql-mapping/jnosql-mapping-graph/pom.xml @@ -20,7 +20,7 @@ org.eclipse.jnosql.mapping jnosql-mapping-parent - 1.0.1-SNAPSHOT + 1.0.1 jnosql-mapping-graph diff --git a/jnosql-mapping/jnosql-mapping-key-value/pom.xml b/jnosql-mapping/jnosql-mapping-key-value/pom.xml index b2aa4292a..efd30f70d 100644 --- a/jnosql-mapping/jnosql-mapping-key-value/pom.xml +++ b/jnosql-mapping/jnosql-mapping-key-value/pom.xml @@ -20,7 +20,7 @@ org.eclipse.jnosql.mapping jnosql-mapping-parent - 1.0.1-SNAPSHOT + 1.0.1 jnosql-mapping-key-value diff --git a/jnosql-mapping/pom.xml b/jnosql-mapping/pom.xml index 1771d6b05..4114e1967 100644 --- a/jnosql-mapping/pom.xml +++ b/jnosql-mapping/pom.xml @@ -22,7 +22,7 @@ org.eclipse.jnosql jnosql-parent - 1.0.1-SNAPSHOT + 1.0.1 diff --git a/pom.xml b/pom.xml index 12c26d4b5..766c13537 100644 --- a/pom.xml +++ b/pom.xml @@ -27,7 +27,7 @@ org.eclipse.jnosql jnosql-parent - 1.0.1-SNAPSHOT + 1.0.1 pom Eclipse JNoSQL The Eclipse JNoSQL is a framework to help developers create enterprise-grade applications using Java From f7a1a0f017cb974e97c8802738f2869c0f31d3a1 Mon Sep 17 00:00:00 2001 From: Otavio Santana Date: Mon, 31 Jul 2023 19:42:31 +0100 Subject: [PATCH 3/3] fix: return migration version Signed-off-by: Otavio Santana --- README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index a4ce01453..3e98e07e1 100644 --- a/README.adoc +++ b/README.adoc @@ -676,7 +676,7 @@ Please take a look link:TESTING-GUIDELINE.adoc[at the file]. == Migration -This migration guide explains how to upgrade from Eclipse JNoSQL version 1.0.1-b6 to the latest version, taking into account two significant changes: upgrading to Jakarta EE 9 and reducing the scope of the Jakarta NoSQL specification to only run on the Mapping. The guide provides instructions on how to update package names and annotations to successfully migrate your Eclipse JNoSQL project. +This migration guide explains how to upgrade from Eclipse JNoSQL version 1.0.0-b6 to the latest version, taking into account two significant changes: upgrading to Jakarta EE 9 and reducing the scope of the Jakarta NoSQL specification to only run on the Mapping. The guide provides instructions on how to update package names and annotations to successfully migrate your Eclipse JNoSQL project. link:MIGRATION.adoc[Migration Guide]