summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ANNOUNCE8
-rw-r--r--CHANGES31
-rw-r--r--CHANGES.current29
-rw-r--r--Doc/Manual/Sections.html2
-rw-r--r--README2
-rw-r--r--configure.ac2
6 files changed, 39 insertions, 35 deletions
diff --git a/ANNOUNCE b/ANNOUNCE
index 7341e0544..466cd296c 100644
--- a/ANNOUNCE
+++ b/ANNOUNCE
@@ -1,8 +1,8 @@
-*** ANNOUNCE: SWIG 3.0.5 (31 Jan 2015) ***
+*** ANNOUNCE: SWIG 3.0.6 (in progress) ***
http://www.swig.org
-We're pleased to announce SWIG-3.0.5, the latest SWIG release.
+We're pleased to announce SWIG-3.0.6, 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.5.tar.gz
+ http://prdownloads.sourceforge.net/swig/swig-3.0.6.tar.gz
A Windows version is also available at
- http://prdownloads.sourceforge.net/swig/swigwin-3.0.5.zip
+ http://prdownloads.sourceforge.net/swig/swigwin-3.0.6.zip
Please report problems with this release to the swig-devel mailing list,
details at http://www.swig.org/mail.html.
diff --git a/CHANGES b/CHANGES
index 9c64f9c75..8bea8c1c2 100644
--- a/CHANGES
+++ b/CHANGES
@@ -3,6 +3,37 @@ 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.5 (31 Jan 2015)
+===========================
+
+2015-01-30: wsfulton
+ [Python] Fix Python -classic and property setting. Setting properties on classic classes
+ was broken in swig-3.0.3 by attempting to use __setattr__. This regression is fixed now
+ by using __dict__ again when using -classic.
+ Fixes patch #232.
+
+2015-01-27: smarchetto
+ [Scilab] Support for the Scilab language has been added
+
+2015-01-23: olly
+ [PHP] When wrapping a returned resource as an object, check if all
+ cases wrap it in the same class, and if so eliminate the pointless
+ switch statement wrapper we previously generated.
+
+2015-01-22: wsfulton
+ [Octave] Merge patch #297 for SF bug #1277 - Octave shared_ptr support
+
+2015-01-15: wsfulton
+ [Python] Merge patch #250 - Fixes for using %constant and objects (non-primitive types)
+
+2015-01-15: wsfulton
+ [C# Go] Merge patch #308 and fix #307 - C++11 strongly typed enum support
+ in directors
+
+2015-01-15: wsfulton
+ [Python] Second fix for #294 #296 - Regression introduced in SWIG-3.0.3 when
+ wrapping functions with default arguments, this time when using kwargs.
+
Version 3.0.4 (14 Jan 2015)
===========================
diff --git a/CHANGES.current b/CHANGES.current
index 2467683fd..45a2b28cc 100644
--- a/CHANGES.current
+++ b/CHANGES.current
@@ -2,33 +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.5 (31 Jan 2015)
+Version 3.0.6 (in progress)
===========================
-2015-01-30: wsfulton
- [Python] Fix Python -classic and property setting. Setting properties on classic classes
- was broken in swig-3.0.3 by attempting to use __setattr__. This regression is fixed now
- by using __dict__ again when using -classic.
- Fixes patch #232.
-
-2015-01-27: smarchetto
- [Scilab] Support for the Scilab language has been added
-
-2015-01-23: olly
- [PHP] When wrapping a returned resource as an object, check if all
- cases wrap it in the same class, and if so eliminate the pointless
- switch statement wrapper we previously generated.
-
-2015-01-22: wsfulton
- [Octave] Merge patch #297 for SF bug #1277 - Octave shared_ptr support
-
-2015-01-15: wsfulton
- [Python] Merge patch #250 - Fixes for using %constant and objects (non-primitive types)
-
-2015-01-15: wsfulton
- [C# Go] Merge patch #308 and fix #307 - C++11 strongly typed enum support
- in directors
-
-2015-01-15: wsfulton
- [Python] Second fix for #294 #296 - Regression introduced in SWIG-3.0.3 when
- wrapping functions with default arguments, this time when using kwargs.
diff --git a/Doc/Manual/Sections.html b/Doc/Manual/Sections.html
index 94f99d68b..057d355ec 100644
--- a/Doc/Manual/Sections.html
+++ b/Doc/Manual/Sections.html
@@ -6,7 +6,7 @@
<body bgcolor="#ffffff">
<H1><a name="Sections"></a>SWIG-3.0 Documentation</H1>
-Last update : SWIG-3.0.5 (31 Jan 2015)
+Last update : SWIG-3.0.6 (in progress)
<H2>Sections</H2>
diff --git a/README b/README
index b51ac469a..5c85e6c3a 100644
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
SWIG (Simplified Wrapper and Interface Generator)
-Version: 3.0.5 (31 Jan 2015)
+Version: 3.0.6 (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,
diff --git a/configure.ac b/configure.ac
index 6e1a16f73..7ba73976b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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.5],[http://www.swig.org])
+AC_INIT([swig],[3.0.6],[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