Add 2.0.1 release notes

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12247 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2010-10-04 05:34:54 +00:00
commit 22a12bf08f
6 changed files with 16 additions and 6 deletions

View file

@ -1,4 +1,4 @@
*** ANNOUNCE: SWIG 2.0.1 (in progress) ***
*** ANNOUNCE: SWIG 2.0.1 (4 October 2010) ***
http://www.swig.org

View file

@ -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

View file

@ -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:

View file

@ -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>

2
README
View file

@ -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,

View file

@ -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.