summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlastair Houghton <alastair@coriolis-systems.com>2014-05-02 12:04:05 +0100
committerAlastair Houghton <alastair@coriolis-systems.com>2014-05-02 12:04:05 +0100
commit397d614cd04887009341b5bda15fdde835e5e099 (patch)
tree8d7a300ced69b112168ec470e7c2e0d696305085
parent890f09cb0b21f909bad3019e28bbd885d0349779 (diff)
downloadnetifaces-397d614cd04887009341b5bda15fdde835e5e099.tar.gz
Added CHANGELOG file.release_0_10_1
-rw-r--r--CHANGELOG46
1 files changed, 46 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
new file mode 100644
index 0000000..b448280
--- /dev/null
+++ b/CHANGELOG
@@ -0,0 +1,46 @@
+2014-05-02 Version 0.10.1
+
+ * Fixed a problem with the gateways() function that caused it a
+ crash on PyPy.
+ * The CI system is now set up to build for PyPy as well, so
+ problems will be found sooner.
+
+2014-05-01 Version 0.10.0
+
+ * Python 3 compatibility.
+ * Improved Windows source code compatibility.
+ * Added gateway detection via gateways() function.
+ * New version number format (skipped 0.9.0 due to its use by
+ the netifaces-merged fork).
+
+2012-01-31 Version 0.8
+
+ All changes in this version relate to the ioctl( ) code path,
+ which is not used on Windows or on any modern UNIX or UNIX-like
+ system that implements getaddrinfo().
+
+ * Fixed bit-rot in the ioctl() code path.
+ * Fixed a problem with setup.py that might manifest itself if the
+ config.cache file was manually edited.
+ * Fixed the ioctl() code path to cope with systems that have
+ sa_len and return longer than normal struct ifreq requests from
+ SIOCG[L]IFCONF (for instance, Mac OS X).
+
+2012-01-30 Version 0.7
+
+ * Dropped support for Win2K and earlier
+ * Added support for addresses other than IPv4 on Windows
+ * Removed empty 'addr' entries for interfaces that don't provide
+ any addresses.
+ * Fixed problems with setup script that prevented it running on
+ Windows, and improved the chances of it working with
+ cross-compilers somewhat.
+ * Added a verion property to the module that you can test at
+ runtime.
+
+2011-11-04 Version 0.6
+
+ * Added a workaround for a FreeBSD kernel bug (kern/152036).
+ * Added address_families dictionary to allow code to look up the
+ symbolic name corresponding to a given numberic address family
+ code.