Skip to content
This repository was archived by the owner on Jun 11, 2021. It is now read-only.

Commit ec55b59

Browse files
committed
Bumped versions for release
1 parent a62a608 commit ec55b59

File tree

3 files changed

+30
-7
lines changed

3 files changed

+30
-7
lines changed

CHANGELOG

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
2021-05-31 Version 0.11.0
2+
3+
* Added notice about needing a new maintainer.
4+
* Fixed link to Travis CI.
5+
* Added test.py to the source distribution.
6+
* Fixed netmask calculation for IPv6.
7+
* Fixes to gateway detection in some edge cases.
8+
* Build CPython 2.7 wheels for 64-bit Windows (yes, you should be
9+
using Python 3 now, but still).
10+
11+
Thank-you to Thomas Sibley, Rajendra Dendukuri, Harshal Patel,
12+
Jeff Gordon, Sajith Sasidharan and Yuri Sevatz for contributing
13+
to this release.
14+
15+
2019-01-02 Version 0.10.9
16+
17+
* Added missing LICENSE file to MANIFEST.in.
18+
119
2019-01-02 Version 0.10.8
220

321
* Fixed a bug that in certain circumstances could lead to an infinite

README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ netifaces 0.10.8
1515
:target: https://ci.appveyor.com/project/al45tair/netifaces/branch/master
1616
:alt: Build Status (Windows)
1717

18+
.. warning::
19+
20+
netifaces needs a new maintainer. al45tair is no longer able to maintain it
21+
or make new releases due to work commitments.
22+
1823
1. What is this?
1924
----------------
2025

setup.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def output(*args, **kwargs):
2222

2323
output = getattr(builtins, 'print', lambda x: True)
2424

25-
__version__ = "0.10.9"
25+
__version__ = "0.11.0"
2626

2727
# Disable hard links, otherwise building distributions fails on OS X
2828
try:
@@ -97,7 +97,7 @@ def test_build(self, contents, link=True, execute=False, libraries=None,
9797
result = True
9898
if status != 0:
9999
result = False
100-
100+
101101
finally:
102102
os.dup2(mystdout, 1)
103103
os.dup2(mystderr, 2)
@@ -123,7 +123,7 @@ def check_requirements(self):
123123
results = {}
124124

125125
self.conftestidx = 0
126-
126+
127127
output("checking for getifaddrs...", end='')
128128

129129
result = results.get('have_getifaddrs', None)
@@ -187,7 +187,7 @@ def check_requirements(self):
187187
sin.sin_family = AF_INET;
188188
sin.sin_port = 0;
189189
sin.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
190-
190+
191191
ret = getnameinfo ((struct sockaddr *)&sin, sizeof (sin),
192192
buffer, sizeof (buffer),
193193
NULL, 0,
@@ -409,7 +409,7 @@ def check_requirements(self):
409409
# lengths, because they're in the sa_len field on just about
410410
# everything but Linux.
411411
output("checking which sockaddr_xxx structs are defined...", end='')
412-
412+
413413
result = results.get('have_sockaddrs', None)
414414
if result is not None:
415415
cached = '(cached)'
@@ -434,7 +434,7 @@ def check_requirements(self):
434434
#include <net/if.h>
435435
#include <netinet/in.h>
436436
%(includes)s
437-
437+
438438
int main (void) {
439439
struct sockaddr_%(sockaddr)s sa;
440440
return 0;
@@ -446,7 +446,7 @@ def check_requirements(self):
446446

447447
if self.test_build(testrig):
448448
result.append(sockaddr)
449-
449+
450450
if result:
451451
output('%s. %s' % (' '.join(result), cached))
452452
for sockaddr in result:

0 commit comments

Comments
 (0)