DATACOUCH-73 - Prepare 1.0 GA Release

This commit is contained in:
Michael Nitschinger
2014-03-13 09:37:21 +01:00
parent b3a4069696
commit 0f80204bf0
3 changed files with 24 additions and 10 deletions

View File

@@ -32,14 +32,8 @@ Add the Maven dependency:
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-couchbase</artifactId>
<version>1.0.0.RC1</version>
<version>1.0.0.RELEASE</version>
</dependency>
<repository>
<id>spring-libs-milestone</id>
<name>Spring Milestone Repository</name>
<url>http://repo.springsource.org/libs-milestone</url>
</repository>
```
If you'd rather like the latest snapshots of the upcoming major version, use our Maven snapshot repository and declare
@@ -49,13 +43,13 @@ the appropriate dependency version.
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-couchbase</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.1.0.BUILD-SNAPSHOT</version>
</dependency>
<repository>
<id>spring-libs-snapshot</id>
<name>Spring Snapshot Repository</name>
<url>http://repo.springsource.org/libs-snapshot</url>
<url>http://repo.spring.io/libs-snapshot</url>
</repository>
```

View File

@@ -1,3 +1,23 @@
Release Notes - Spring Data Couchbase - Version 1.0.0.RELEASE - 2014-03-13
--------------------------------------------------------------------------
** Bug
* [DATACOUCH-50] - findAll(Iterable<ID> ids) in CrudRepository throws java.util.concurrent.ExecutionException
* [DATACOUCH-61] - NPE when saving object containing Joda DateTime field
* [DATACOUCH-69] - Can't deserialize Date field
* [DATACOUCH-70] - Bundle could not be resolved in non J2SE-1.6 runtime environment
** Improvement
* [DATACOUCH-55] - Allow support for custom object mapping (like Date objects)
* [DATACOUCH-72] - Update Couchbase SDK , Jackson and Spring-Data-Commons
* [DATACOUCH-75] - Trim off find on custom repository finder methods.
** New Feature
* [DATACOUCH-71] - Support for JS303 Validation (& template events)
** Task
* [DATACOUCH-73] - Release 1.0 GA
* [DATACOUCH-74] - Initial Documentation for 1.0 GA
Release Notes - Spring Data Couchbase - Version 1.0 RC1 - 2014-02-06
--------------------------------------------------------------------
** Bug

View File

@@ -1,4 +1,4 @@
Spring Data Couchbase 1.0 RC1
Spring Data Couchbase 1.0.0.RELEASE
Copyright (c) [2013-2014] Couchbase / Pivotal Inc.
This product is licensed to you under the Apache License, Version 2.0 (the "License").