DATAREDIS-255 - Prepare 1.1.1.RELEASE.

Updated documentation, changelog, notice and readme.
This commit is contained in:
Thomas Darimont
2014-01-28 12:53:30 +01:00
parent 271d3d197d
commit f950dfa491
8 changed files with 42 additions and 9 deletions

View File

@@ -106,15 +106,17 @@ jar {
manifest.attributes["Created-By"] = "${System.getProperty("java.version")} (${System.getProperty("java.specification.vendor")})"
manifest.attributes['Implementation-Title'] = 'spring-data-redis'
manifest.attributes['Implementation-Version'] = project.version
manifest.attributes['Implementation-URL'] = "http://www.springsource.org/spring-data/redis"
manifest.attributes['Implementation-URL'] = "http://http://projects.spring.io/spring-data-redis"
manifest.attributes['Implementation-Vendor'] = "SpringSource"
manifest.attributes['Implementation-Vendor-Id'] = "org.springframework"
from("$rootDir/docs/src/info") {
include "license.txt"
include "notice.txt"
include "readme.txt"
include "changelog.txt"
into "META-INF"
expand(copyright: new Date().format('yyyy'), version: project.version)
expand(copyright: new Date().format('2011-yyyy'), version: project.version)
}
}

View File

@@ -16,7 +16,7 @@ This document is the API specification for the Spring Data project.
<p>
If you are interested in commercial training, consultancy and
support for the Spring Data Framework,
<a href="http://www.SpringSource.com/" target="_top">SpringSource</a> provides
<a href="http://www.gopivotal.com" target="_top">Pivotal</a> provides
such commercial support.
</p>
</div>

View File

@@ -1,10 +1,26 @@
SPRING DATA REDIS INTEGRATION CHANGELOG
SPRING DATA REDIS CHANGELOG
=======================================
http://www.springsource.org/spring-data/redis
http://projects.spring.io/spring-data-redis
Commit changelog: http://github.com/SpringSource/spring-data-redis/tree/v[version]
Issues changelog: http://jira.springsource.org/secure/ReleaseNote.jspa?projectId=10604
Changes in version 1.1.1.RELEASE (2014-01-28)
----------------------------------------
Bug
[DATAREDIS-245] - Prevent excessive Thread creation in unit tests
[DATAREDIS-248] - Fix generics in DecoratingStringHashMapper to be Java 8 compatible
[DATAREDIS-257] - Shutdown the client when DefaultLettucePool is destroyed
Improvement
[DATAREDIS-242] - Listener Container start() Returns Before Container is Really Started
[DATAREDIS-249] - Improve logging for tests in Gradle build
[DATAREDIS-251] - Fix tests to work against Redis 2.8.x
Task
[DATAREDIS-243] - Ensure compatibility with Spring Framework 4.0
[DATAREDIS-247] - Testcases must be locale independent
[DATAREDIS-255] - Release 1.1.1
Changes in version 1.1.0.RELEASE (2013-09-09)
----------------------------------------

View File

@@ -1,3 +1,6 @@
Spring Data Redis ${version}
Copyright (c) [$copyright] SpringSource, a division of Pivotal, Inc.
========================================================================
== NOTICE file corresponding to section 4 d of the Apache License, ==
== Version 2.0, in this case for the Spring Integration distribution. ==

View File

@@ -1,6 +1,8 @@
SPRING DATA REDIS
Spring Data Redis $version (Jan 28, 2014)
-----------------
http://www.springsource.org/spring-data/redis
Spring Data Redis is released under the terms of the Apache Software License Version 2.0 (see license.txt).
http://projects.spring.io/spring-data-redis/
1. INTRODUCTION
@@ -23,6 +25,6 @@ Please see the reference documentation.
Additionally the blog at http://blog.springsource.com as well as sections of interest in the reference documentation.
ADDITIONAL RESOURCES
Spring Data Homepage: http://www.springsource.org/spring-data/redis
Spring Data Homepage: http://projects.spring.io/spring-data-redis
Spring Data Forum : http://forum.springsource.org/forumdisplay.php?f=80
Redis Homepage : http://redis.io

View File

@@ -21,6 +21,16 @@
<surname>Hickey</surname>
<affiliation>SpringSource</affiliation>
</author>
<author>
<firstname>Thomas</firstname>
<surname>Darimont</surname>
<affiliation>Pivotal</affiliation>
</author>
<author>
<firstname>Christoph</firstname>
<surname>Strobl</surname>
<affiliation>Pivotal</affiliation>
</author>
</authorgroup>
<legalnotice>

View File

@@ -6,6 +6,6 @@
3.0.x and above.</para>
<para>
In terms of key value stores, <ulink url="http://redis.io">Redis</ulink> 2.4.x or higher
is required. Spring Data Redis is currently tested against the latest 2.4 and 2.6 releases.
is required. Spring Data Redis is currently tested against the latest 2.4, 2.6, 2.8 releases.
</para>
</chapter>