Author: ssteiner
Date: Mon May 14 08:31:50 2018
New Revision: 1831549
URL: http://svn.apache.org/viewvc?rev=1831549&view=rev
Log:
Add changes for release
Modified:
xmlgraphics/fop/trunk/NOTICE
xmlgraphics/fop/trunk/README
xmlgraphics/fop/trunk/fop/build.xml
Modified: xmlgraphics/fop/trunk/NOTICE
URL:
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/NOTICE?rev=1831549&r1=1831548&r2=1831549&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/NOTICE (original)
+++ xmlgraphics/fop/trunk/NOTICE Mon May 14 08:31:50 2018
@@ -1,5 +1,5 @@
Apache FOP
-Copyright 1999-2017 The Apache Software Foundation
+Copyright 1999-2018 The Apache Software Foundation
This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
Modified: xmlgraphics/fop/trunk/README
URL:
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/README?rev=1831549&r1=1831548&r2=1831549&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/README (original)
+++ xmlgraphics/fop/trunk/README Mon May 14 08:31:50 2018
@@ -110,7 +110,18 @@ under the ./fop sub-directory.
RELEASE NOTES
==============================================================================
-Version 2.2 (Forthcoming)
+Version 2.3 (Forthcoming)
+===========
+
+Major Changes in Version 2.3
+----------------------------
+
+* Support for unicode Surrogate pairs
+* OTF fonts not working on Mac Preview
+
+This release also contains a number of bug fixes.
+
+Version 2.2
===========
Major Changes in Version 2.2
Modified: xmlgraphics/fop/trunk/fop/build.xml
URL:
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/fop/build.xml?rev=1831549&r1=1831548&r2=1831549&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/fop/build.xml (original)
+++ xmlgraphics/fop/trunk/fop/build.xml Mon May 14 08:31:50 2018
@@ -156,7 +156,7 @@ list of possible build targets.
<property name="name" value="fop"/>
<property name="NAME" value="FOP"/>
<property name="version" value="2.3.0-SNAPSHOT"/>
- <property name="year" value="1999-2017"/>
+ <property name="year" value="1999-2018"/>
<property name="javac.debug" value="on"/>
<property name="javac.optimize" value="off"/>
<property name="javac.deprecation" value="on"/>
@@ -1311,28 +1311,28 @@ NOTE:
<target name="release-dist" depends="dist" description="Generates the
distribution package and signs the release">
<property name="bin.suffix" value="bin"/>
<input message="Passphrase for your default private key (attention:
passphrase will be echoed in clear text on the display!)" addproperty="pwd"/>
- <antcall target="sha256">
+ <antcall target="sha512">
<param name="sign.archive" value="${name}-${version}-src.zip"/>
</antcall>
<antcall target="sign-file">
<param name="sign.archive" value="${name}-${version}-src.zip"/>
<param name="pwd" value="${pwd}"/>
</antcall>
- <antcall target="sha256">
+ <antcall target="sha512">
<param name="sign.archive" value="${name}-${version}-src.tar.gz"/>
</antcall>
<antcall target="sign-file">
<param name="sign.archive" value="${name}-${version}-src.tar.gz"/>
<param name="pwd" value="${pwd}"/>
</antcall>
- <antcall target="sha256">
+ <antcall target="sha512">
<param name="sign.archive" value="${name}-${version}-${bin.suffix}.zip"/>
</antcall>
<antcall target="sign-file">
<param name="sign.archive" value="${name}-${version}-${bin.suffix}.zip"/>
<param name="pwd" value="${pwd}"/>
</antcall>
- <antcall target="sha256">
+ <antcall target="sha512">
<param name="sign.archive"
value="${name}-${version}-${bin.suffix}.tar.gz"/>
</antcall>
<antcall target="sign-file">
@@ -1340,11 +1340,11 @@ NOTE:
<param name="pwd" value="${pwd}"/>
</antcall>
</target>
- <target name="sha256">
- <property name="sha256.exec" value="sha256sum"/>
- <property name="sha256.options" value=""/>
- <exec executable="${sha256.exec}" output="${sign.archive}.sha256">
- <arg line="${sha256.options} ${sign.archive}"/>
+ <target name="sha512">
+ <property name="sha512.exec" value="sha512sum"/>
+ <property name="sha512.options" value=""/>
+ <exec executable="${sha512.exec}" output="${sign.archive}.sha512">
+ <arg line="${sha512.options} ${sign.archive}"/>
</exec>
</target>
<target name="sign-file">
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]