43 lines
2 KiB
Text
43 lines
2 KiB
Text
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.9 (in progress)
|
|
===========================
|
|
|
|
2016-01-27: steeve
|
|
[Go] Ensure structs are properly packed between gc and GCC/clang.
|
|
|
|
2016-01-25: ahnolds
|
|
[Python] Support the full Python test suite in -classic mode
|
|
* Convert long/unsigned long/long long/unsigned long long to PyInt
|
|
rather than PyLong when possible. Certain python functions like
|
|
len() require a PyInt when operating on old-style classes.
|
|
* Add support for static methods in classic mode, including support
|
|
for pythonappend, pythonprepend, and docstrings.
|
|
* Removing the use of __swig_getmethods__ for static member methods
|
|
since they will always be found by the standard argument lookup
|
|
* Fix a bug where the wrong type of exception was caught when
|
|
checking for new-style class support
|
|
|
|
2016-01-23: ahnolds
|
|
[Go] Enable support for the Go test-suite on OSX:
|
|
* The linker on OSX requires that all symbols (even weak symbols)
|
|
are defined at link time. Because the function _cgo_topofstack is
|
|
only defined starting in Go version 1.4, we explicitly mark it as
|
|
undefined for older versions of Go on OSX.
|
|
* Avoid writing empty swigargs structs, since empty structs are not
|
|
allowed in extern "C" blocks.
|
|
|
|
2016-01-12: olly
|
|
[Javascript] Look for "nodejs" as well as "node", as it's packaged
|
|
as the former on Debian.
|
|
|
|
2016-01-12: olly
|
|
[Javascript] For v8 >= 4.3.0, use V8_MAJOR_VERSION.
|
|
Fixes https://github.com/swig/swig/issues/561.
|
|
|
|
2016-01-10: ahnolds
|
|
Improved size_t and ptrdiff_t typemaps to support large values
|
|
on platforms where sizeof(size_t) > sizeof(unsigned long) and
|
|
sizeof(ptrdiff_t) > sizeof(long).
|