Skip to content

Commit 838b4e8

Browse files
authored
Prepare for 1.2.31 release (lsh123#299)
1 parent db3d277 commit 838b4e8

File tree

8 files changed

+26
-32
lines changed

8 files changed

+26
-32
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# You can check the whole build process in the logs, and any later commit will start
1313
# a new build using a fresh virtual machine.
1414

15-
version: '1.2.30-{build}'
15+
version: '1.2.31-{build}'
1616

1717
shallow_clone: true
1818
skip_branch_with_pr: true

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
dnl Process this file with autoconf to produce a configure script.
2-
AC_INIT([xmlsec1],[1.2.30],[http://www.aleksey.com/xmlsec])
2+
AC_INIT([xmlsec1],[1.2.31],[http://www.aleksey.com/xmlsec])
33

44
XMLSEC_PACKAGE=xmlsec1
55
XMLSEC_VERSION_MAJOR=1
66
XMLSEC_VERSION_MINOR=2
7-
XMLSEC_VERSION_SUBMINOR=30
7+
XMLSEC_VERSION_SUBMINOR=31
88
XMLSEC_VERSION="$XMLSEC_VERSION_MAJOR.$XMLSEC_VERSION_MINOR.$XMLSEC_VERSION_SUBMINOR"
99
XMLSEC_VERSION_INFO=`echo $XMLSEC_VERSION | awk -F. '{ printf "%d:%d:%d", $1+$2, $3, $2 }'`
1010
XMLSEC_VERSION_SAFE=`echo $XMLSEC_VERSION | sed 's/\./_/g'`

docs/api/xmlsec-version.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ <h2><span class="refentrytitle"><a name="xmlsec-version.top_of_page"></a>version
7878
<a name="xmlsec-version.other_details"></a><h2>Types and Values</h2>
7979
<div class="refsect2">
8080
<a name="XMLSEC-VERSION:CAPS"></a><h3>XMLSEC_VERSION</h3>
81-
<pre class="programlisting">#define XMLSEC_VERSION "1.2.30"
81+
<pre class="programlisting">#define XMLSEC_VERSION "1.2.31"
8282
</pre>
8383
<p>The library version string in the format
8484
"$major_number.$minor_number.$sub_minor_number".</p>
@@ -100,14 +100,14 @@ <h2><span class="refentrytitle"><a name="xmlsec-version.top_of_page"></a>version
100100
<hr>
101101
<div class="refsect2">
102102
<a name="XMLSEC-VERSION-SUBMINOR:CAPS"></a><h3>XMLSEC_VERSION_SUBMINOR</h3>
103-
<pre class="programlisting">#define XMLSEC_VERSION_SUBMINOR 30
103+
<pre class="programlisting">#define XMLSEC_VERSION_SUBMINOR 31
104104
</pre>
105105
<p>The library sub-minor version number.</p>
106106
</div>
107107
<hr>
108108
<div class="refsect2">
109109
<a name="XMLSEC-VERSION-INFO:CAPS"></a><h3>XMLSEC_VERSION_INFO</h3>
110-
<pre class="programlisting">#define XMLSEC_VERSION_INFO "3:30:2"
110+
<pre class="programlisting">#define XMLSEC_VERSION_INFO "3:31:2"
111111
</pre>
112112
<p>The library version info string in the format
113113
"$major_number+$minor_number:$sub_minor_number:$minor_number".</p>

docs/download.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -420,10 +420,10 @@
420420
<h1>Download</h1>
421421
</div>
422422
<h2>Stable releases.</h2>
423-
<p>The latest stable XML Security Library version is <b>1.2.30</b>:</p>
423+
<p>The latest stable XML Security Library version is <b>1.2.31</b>:</p>
424424
<ul>
425425
<li>
426-
<a href="http://www.aleksey.com/xmlsec/download/xmlsec1-1.2.30.tar.gz">Sources for latest version</a>.</li>
426+
<a href="http://www.aleksey.com/xmlsec/download/xmlsec1-1.2.31.tar.gz">Sources for latest version</a>.</li>
427427
<li>
428428
<a href="http://www.zlatkovic.com/projects/libxml/index.html">Windows binaries</a> for XMLSec Library
429429
(as well as LibXML2, LibXSLT and OpenSSL) from <a href="mailto:[email protected]">Igor Zlatkovic</a>.</li>

docs/index.html

Lines changed: 8 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,14 @@ <h1>XML Security Library</h1>
439439
see the Copyright file in the distribution for details.<br><br></p>
440440
<p><b>News</b></p>
441441
<ul>
442-
<li>April 21 2020<br>
442+
<li>October 29 2020<br>
443+
The <a href="download.html">XML Security Library 1.2.31</a> release includes the following changes:
444+
<ul>
445+
<li>Added configure option to ensure memset() securely erases memory (gcc).</li>
446+
<li>Several other small fixes (<a href="https://github.com/lsh123/xmlsec/commits/master">more details</a>).</li>
447+
</ul>
448+
</li>
449+
<br><li>April 21 2020<br>
443450
The <a href="download.html">XML Security Library 1.2.30</a> release includes the following changes:
444451
<ul>
445452
<li>Enabled XML_PARSE_HUGE for all xml parsers.</li>
@@ -466,26 +473,6 @@ <h1>XML Security Library</h1>
466473
<li>Several other small fixes (<a href="https://github.com/lsh123/xmlsec/commits/master">more details</a>).</li>
467474
</ul>
468475
</li>
469-
<br><li>October 23 2018<br>
470-
The <a href="download.html">XML Security Library 1.2.27</a> release includes the following changes:
471-
<ul>
472-
<li>Added AES-GCM support for OpenSSL and MSCNG (snargit).</li>
473-
<li>Added DSA-SHA256 and ECDSA-SHA384 support for NSS (vmiklos).</li>
474-
<li>Added RSA-OAEP support for MSCNG (vmiklos).</li>
475-
<li>Continuous build integration in Travis and Appveyor.</li>
476-
<li>Several other small fixes (<a href="https://github.com/lsh123/xmlsec/commits/master">more details</a>).</li>
477-
</ul>
478-
</li>
479-
<br><li>June 5 2018<br>
480-
The <a href="download.html">XML Security Library 1.2.26</a> release includes the following changes:
481-
<ul>
482-
<li>Added xmlsec-mscng module based on <a href="https://msdn.microsoft.com/en-us/library/windows/desktop/aa376210(v=vs.85).aspx">Microsoft Cryptography API: Next Generation</a> (vmiklos).</li>
483-
<li>Added support for GOST 2012 and fixed CryptoPro CSP provider for GOST R 34.10-2001 in xmlsec-mscrypto (ipechorin).</li>
484-
<li>Added LibreSSL 2.7 support (vishwin).</li>
485-
<li>Upgraded documentation build process to support the latest gtk-doc.</li>
486-
<li>Several other small fixes (<a href="https://github.com/lsh123/xmlsec/commits/master">more details</a>).</li>
487-
</ul>
488-
</li>
489476
</ul>
490477
</td></tr></table></td>
491478
</tr></table></body>

docs/news.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,14 @@
420420
<h1>XML Security Library News</h1>
421421
</div>
422422
<ul>
423-
<li>April 21 2020<br>
423+
<li>October 29 2020<br>
424+
The <a href="download.html">XML Security Library 1.2.31</a> release includes the following changes:
425+
<ul>
426+
<li>Added configure option to ensure memset() securely erases memory (gcc).</li>
427+
<li>Several other small fixes (<a href="https://github.com/lsh123/xmlsec/commits/master">more details</a>).</li>
428+
</ul>
429+
</li>
430+
<br><li>April 21 2020<br>
424431
The <a href="download.html">XML Security Library 1.2.30</a> release includes the following changes:
425432
<ul>
426433
<li>Enabled XML_PARSE_HUGE for all xml parsers.</li>

man/xmlsec1-config.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6.
2-
.TH XMLSEC1-CONFIG "1" "April 2020" "xmlsec1-config 1.2.30" "User Commands"
2+
.TH XMLSEC1-CONFIG "1" "October 2020" "xmlsec1-config 1.2.31" "User Commands"
33
.SH NAME
44
xmlsec1-config \- detail installed version of xmlsec library
55
.SH SYNOPSIS

man/xmlsec1.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6.
2-
.TH XMLSEC1 "1" "April 2020" "xmlsec1 1.2.30 (openssl)" "User Commands"
2+
.TH XMLSEC1 "1" "October 2020" "xmlsec1 1.2.31 (openssl)" "User Commands"
33
.SH NAME
44
xmlsec1 \- sign, verify, encrypt and decrypt XML documents
55
.SH SYNOPSIS

0 commit comments

Comments
 (0)