+ exclude pdf from being processed

+ update changelog
+ prepare 1.1 M3 release
This commit is contained in:
Costin Leau
2011-09-25 19:36:41 +03:00
parent d8995e429d
commit 06c4185d7e
5 changed files with 11 additions and 6 deletions

View File

@@ -25,7 +25,10 @@ def imagesDir = new File(projectDir, 'src/reference/resources/images');
imgSpec = copySpec {
into ('reference') {
from("$projectDir/src/reference/resources") {
include "css/**/*"
include 'css/**/*'
}
from("$buildDir/docs") {
include '*.pdf'
}
}
@@ -39,6 +42,7 @@ refSpec = copySpec {
into ('reference') {
from("$buildDir/docs") {
exclude '*.fo'
exclude '*.pdf'
}
}

View File

@@ -2,12 +2,13 @@ SPRING GEMFIRE INTEGRATION CHANGELOG
====================================
http://www.springsource.org/spring-gemfire
Changes in version 1.1.0.M3 (2011-mm-dd)
Changes in version 1.1.0.M3 (2011-09-25)
----------------------------------------
General
* Upgraded to GemFire 6.6 GA
* Introduced support for GemFire Indecies
* Reintroduced samples in zip distribution
Package org.springframework.data.gemfire
* Improved region creation by removing the use of GemFire 6.0 API (replaced with 6.5+)

View File

@@ -80,14 +80,14 @@
<xsl:param name="sequence" select="''"/>
<xsl:param name="position" select="''"/>
<xsl:param name="gentext-key" select="''"/>
<xsl:variable name="Version">
<xsl:choose>
<xsl:when test="//productname">
<xsl:value-of select="//productname"/><xsl:text> </xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>please define productname in your docbook file!</xsl:text>
<xsl:text>Spring GemFire</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>

View File

@@ -21,4 +21,4 @@ gemfire.range = "[6.5, 7.0)"
# --------------------
# Project wide version
# --------------------
springGemfireVersion=1.1.0.BUILD-SNAPSHOT
springGemfireVersion=1.1.0.M3

View File

@@ -1,3 +1,3 @@
junitVersion = 4.8.1
springVersion = 3.1.0.M2
version = 1.1.0.BUILD-SNAPSHOT
version = 1.1.0.M3