summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ANNOUNCE2
-rw-r--r--CHANGES.current4
-rw-r--r--Doc/Manual/SWIG.html3
-rw-r--r--Doc/Manual/Sections.html2
-rw-r--r--README2
-rw-r--r--RELEASENOTES9
6 files changed, 16 insertions, 6 deletions
diff --git a/ANNOUNCE b/ANNOUNCE
index ad3e8f8d6..d14a77042 100644
--- a/ANNOUNCE
+++ b/ANNOUNCE
@@ -1,4 +1,4 @@
-*** ANNOUNCE: SWIG 2.0.1 (in progress) ***
+*** ANNOUNCE: SWIG 2.0.1 (4 October 2010) ***
http://www.swig.org
diff --git a/CHANGES.current b/CHANGES.current
index 18694e492..9b02c475f 100644
--- a/CHANGES.current
+++ b/CHANGES.current
@@ -2,8 +2,8 @@ This file contains 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 2.0.1 (in progress)
-===========================
+Version 2.0.1 (4 October 2010)
+==============================
2010-10-03: wsfulton
Apply patch #3066958 from Mikael Johansson to fix default smart pointer
diff --git a/Doc/Manual/SWIG.html b/Doc/Manual/SWIG.html
index 23a5e1643..e45fc5f9f 100644
--- a/Doc/Manual/SWIG.html
+++ b/Doc/Manual/SWIG.html
@@ -1885,7 +1885,8 @@ and a more descriptive one, but the two functions are otherwise equivalent:
<td>String after (Perl-like) regex substitution operation. This function
allows to apply arbitrary regular expressions to the identifier names. The
<i>pattern</i> part is a regular expression in Perl syntax (as supported
- by <a href="http://www.pcre.org/">PCRE</a>) and the <i>subst</i> string
+ by the <a href="http://www.pcre.org/">Perl Compatible Regular Expressions (PCRE)</a>)
+ library and the <i>subst</i> string
can contain back-references introduced by <tt>'\'</tt> or, as backslashes need
to be escaped in C strings, rather by <tt>"\\"</tt>. For example, to remove
any alphabetic prefix before an underscore you could use the following directive:
diff --git a/Doc/Manual/Sections.html b/Doc/Manual/Sections.html
index 8693adc07..74d821b17 100644
--- a/Doc/Manual/Sections.html
+++ b/Doc/Manual/Sections.html
@@ -6,7 +6,7 @@
<body bgcolor="#ffffff">
<H1><a name="Sections"></a>SWIG-2.0 Documentation</H1>
-Last update : SWIG-2.0.1 (in progress)
+Last update : SWIG-2.0.1 (4 October 2010)
<H2>Sections</H2>
diff --git a/README b/README
index b5379d84d..085fafd7e 100644
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
SWIG (Simplified Wrapper and Interface Generator)
-Version: 2.0.1 (in progress)
+Version: 2.0.1 (4 October 2010)
Tagline: SWIG is a compiler that integrates C and C++ with languages
including Perl, Python, Tcl, Ruby, PHP, Java, Ocaml, Lua,
diff --git a/RELEASENOTES b/RELEASENOTES
index 5f41df04f..e8ff30285 100644
--- a/RELEASENOTES
+++ b/RELEASENOTES
@@ -5,6 +5,15 @@ and CHANGES files.
Release Notes
=============
+SWIG-2.0.1 summary:
+- New language module: Go
+- New regular expression (regex) encoder for renaming symbols based on
+ the Perl Compatible Regular Expressions (PCRE) library.
+- Numerous fixes in reporting file and line numbers in error and warning
+ messages.
+- Various bug fixes and improvements in the C#, Lua, Perl, PHP, Ruby
+ and Python language modules.
+
SWIG-2.0.0 summary:
- License changes, see LICENSE file and http://www.swig.org/legal.html.
- Much better nested class/struct support.