Bump version to 3.0.5
This commit is contained in:
parent
ecf3ab5605
commit
bedff70793
6 changed files with 43 additions and 39 deletions
8
ANNOUNCE
8
ANNOUNCE
|
|
@ -1,8 +1,8 @@
|
|||
*** ANNOUNCE: SWIG 3.0.4 (14 Jan 2015) ***
|
||||
*** ANNOUNCE: SWIG 3.0.5 (in progress) ***
|
||||
|
||||
http://www.swig.org
|
||||
|
||||
We're pleased to announce SWIG-3.0.4, the latest SWIG release.
|
||||
We're pleased to announce SWIG-3.0.5, the latest SWIG release.
|
||||
|
||||
What is SWIG?
|
||||
=============
|
||||
|
|
@ -21,11 +21,11 @@ Availability
|
|||
============
|
||||
The release is available for download on Sourceforge at
|
||||
|
||||
http://prdownloads.sourceforge.net/swig/swig-3.0.4.tar.gz
|
||||
http://prdownloads.sourceforge.net/swig/swig-3.0.5.tar.gz
|
||||
|
||||
A Windows version is also available at
|
||||
|
||||
http://prdownloads.sourceforge.net/swig/swigwin-3.0.4.zip
|
||||
http://prdownloads.sourceforge.net/swig/swigwin-3.0.5.zip
|
||||
|
||||
Please report problems with this release to the swig-devel mailing list,
|
||||
details at http://www.swig.org/mail.html.
|
||||
|
|
|
|||
35
CHANGES
35
CHANGES
|
|
@ -3,6 +3,41 @@ SWIG (Simplified Wrapper and Interface Generator)
|
|||
See the CHANGES.current file for changes in the current version.
|
||||
See the RELEASENOTES file for a summary of changes in each release.
|
||||
|
||||
Version 3.0.4 (14 Jan 2015)
|
||||
===========================
|
||||
|
||||
2015-01-12: olly
|
||||
[PHP] Fix segfault in director upcall check when using PHP built with
|
||||
ZTS enabled. Fixes #155, reported by Pierre Labastie.
|
||||
|
||||
2015-01-12: vadz
|
||||
[Python] Fix #294 #296 - Regression introduced in SWIG-3.0.3 when
|
||||
wrapping functions with default arguments. Invalid or missing default
|
||||
arguments were sometimes being generated into the python layer.
|
||||
|
||||
2015-01-08: olly
|
||||
Allow C++11 "explicit constexpr". Fixes github issue #284 reported
|
||||
by Pawel Tomulik. Also handle "constexpr explicit" and "constexpr
|
||||
static".
|
||||
|
||||
2015-01-08: olly
|
||||
When reporting an error for a construct which hasn't been
|
||||
terminated when the end of the file is reached, report it at the
|
||||
start line rather than "EOF" as then tools like editors and IDEs
|
||||
will take you to a generally more useful place for fixing the
|
||||
problem.
|
||||
|
||||
2015-01-08: olly
|
||||
Improve error messages for a few cases which previously gave the
|
||||
one of the cryptic catch-all errors "Syntax error in input".
|
||||
|
||||
2015-01-08: olly
|
||||
Provide -cppext as a general command line option for setting the
|
||||
extension used for generated C++ files (previously it was specific
|
||||
to the PHP backend). Deprecate the equivalent -suffix option
|
||||
provided by the Ocaml backend, but continue to support that for
|
||||
now.
|
||||
|
||||
Version 3.0.3 (30 Dec 2014)
|
||||
===========================
|
||||
|
||||
|
|
|
|||
|
|
@ -2,37 +2,6 @@ Below are the changes for the current release.
|
|||
See the CHANGES file for changes in older releases.
|
||||
See the RELEASENOTES file for a summary of changes in each release.
|
||||
|
||||
Version 3.0.4 (14 Jan 2015)
|
||||
Version 3.0.5 (in progress)
|
||||
===========================
|
||||
|
||||
2015-01-12: olly
|
||||
[PHP] Fix segfault in director upcall check when using PHP built with
|
||||
ZTS enabled. Fixes #155, reported by Pierre Labastie.
|
||||
|
||||
2015-01-12: vadz
|
||||
[Python] Fix #294 #296 - Regression introduced in SWIG-3.0.3 when
|
||||
wrapping functions with default arguments. Invalid or missing default
|
||||
arguments were sometimes being generated into the python layer.
|
||||
|
||||
2015-01-08: olly
|
||||
Allow C++11 "explicit constexpr". Fixes github issue #284 reported
|
||||
by Paweł Tomulik. Also handle "constexpr explicit" and "constexpr
|
||||
static".
|
||||
|
||||
2015-01-08: olly
|
||||
When reporting an error for a construct which hasn't been
|
||||
terminated when the end of the file is reached, report it at the
|
||||
start line rather than "EOF" as then tools like editors and IDEs
|
||||
will take you to a generally more useful place for fixing the
|
||||
problem.
|
||||
|
||||
2015-01-08: olly
|
||||
Improve error messages for a few cases which previously gave the
|
||||
one of the cryptic catch-all errors "Syntax error in input".
|
||||
|
||||
2015-01-08: olly
|
||||
Provide -cppext as a general command line option for setting the
|
||||
extension used for generated C++ files (previously it was specific
|
||||
to the PHP backend). Deprecate the equivalent -suffix option
|
||||
provided by the Ocaml backend, but continue to support that for
|
||||
now.
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
<body bgcolor="#ffffff">
|
||||
<H1><a name="Sections"></a>SWIG-3.0 Documentation</H1>
|
||||
|
||||
Last update : SWIG-3.0.4 (14 Jan 2015)
|
||||
Last update : SWIG-3.0.5 (in progress)
|
||||
|
||||
<H2>Sections</H2>
|
||||
|
||||
|
|
|
|||
2
README
2
README
|
|
@ -1,6 +1,6 @@
|
|||
SWIG (Simplified Wrapper and Interface Generator)
|
||||
|
||||
Version: 3.0.4 (14 Jan 2015)
|
||||
Version: 3.0.5 (in progress)
|
||||
|
||||
Tagline: SWIG is a compiler that integrates C and C++ with languages
|
||||
including Perl, Python, Tcl, Ruby, PHP, Java, C#, D, Go, Lua,
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
|
|||
dnl The macros which aren't shipped with the autotools are stored in the
|
||||
dnl Tools/config directory in .m4 files.
|
||||
|
||||
AC_INIT([swig],[3.0.4],[http://www.swig.org])
|
||||
AC_INIT([swig],[3.0.5],[http://www.swig.org])
|
||||
|
||||
dnl NB: When this requirement is increased to 2.60 or later, AC_PROG_SED
|
||||
dnl definition below can be removed
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue