From 45a9c24a1a5a8ff809a37482cbeb1e4fb9e5af28 Mon Sep 17 00:00:00 2001 From: Anastasiia Smirnova Date: Mon, 23 Dec 2019 14:01:47 +0200 Subject: [PATCH] Release 2.3.0.RELEASE --- README.md | 4 ++-- pom.xml | 2 +- src/main/asciidoc/reference/aerospike.adoc | 18 ++++++++++++++++-- 3 files changed, 19 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 00d8bf77a..32a148383 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Add the Maven dependency: com.aerospike spring-data-aerospike - 2.2.0.RELEASE + 2.3.0.RELEASE ``` @@ -49,7 +49,7 @@ Both dependencies will be provided for you by `spring-data-aerospike`, so no nee ### AerospikeTemplate -AerospikeTemplate is the central support class for Aerospike database operations. It provides: +`AerospikeTemplate` is the central support class for Aerospike database operations. It provides: * Basic POJO mapping support to and from Bins * Convenience methods to interact with the store (insert object, update objects) and Aerospike specific ones. diff --git a/pom.xml b/pom.xml index bf6623e2b..c1534dd5d 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.aerospike spring-data-aerospike - 2.2.0.RELEASE + 2.3.0.RELEASE Spring Data Aerospike Aerospike Inc. diff --git a/src/main/asciidoc/reference/aerospike.adoc b/src/main/asciidoc/reference/aerospike.adoc index ad2744eef..4c29d943e 100644 --- a/src/main/asciidoc/reference/aerospike.adoc +++ b/src/main/asciidoc/reference/aerospike.adoc @@ -22,7 +22,7 @@ First you need to set up a running Aerospike server. To create a Spring project in STS go to File -> New -> Spring Template Project -> Simple Spring Utility Project -> press Yes when prompted. Then enter a project and a package name such as org.spring.aerospike.example. -Then add the following to pom.xml dependencies section. +Then add the following to `pom.xml` dependencies section. [source,xml] ---- @@ -33,7 +33,7 @@ Then add the following to pom.xml dependencies section. com.aerospike spring-data-aerospike - 2.2.0.RELEASE + 2.3.0.RELEASE @@ -41,6 +41,20 @@ Then add the following to pom.xml dependencies section. You can either setup Spring Boot or Spring application. Basic setup of Spring Boot application is described under the following link: https://projects.spring.io/spring-boot. +.Spring Boot compatibility +|=== +|Spring-data-aerospike Version |Spring Boot Version + +|2.3.0.RELEASE +|2.2.x + +|2.1.1.RELEASE +|2.1.x, 2.0.x + +|1.2.1.RELEASE +|1.5.x +|=== + In case you do no want to use Spring Boot, the best way to manage Spring dependencies is declaring `spring-framework-bom` of needed version in `dependencyManagement` section of your `pom.xml`: [source,xml]