Skip to content

Commit 72b2481

Browse files
committed
Prepare for 18.0.0 Release Candidate 3.
Note that an RC 2 was cut, but was missing the proper NEWS. Since we are now using towncrier for this, we update that in a separate commit, that can be reverted and redone for the final release.
1 parent c453df1 commit 72b2481

File tree

8 files changed

+16
-11
lines changed

8 files changed

+16
-11
lines changed

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include NEWS
1+
include NEWS.rst
22
include LICENSE
33
include doc/examples/*.py
44
include doc/examples/*.tac

README.rst

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Wokkel 18.0.0rc1
1+
Wokkel 18.0.0rc3
22
=================
33

44
|pypi|
@@ -58,6 +58,12 @@ Contributors
5858
- Adrien Cossa
5959

6060

61+
Name
62+
----
63+
64+
Wokkel lends it name from a popular twisted savory snack in the Netherlands.
65+
66+
6167
Author
6268
------
6369

debian/changelog

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
wokkel (18.0.0~~rc1) testing; urgency=low
1+
wokkel (18.0.0~~rc3) testing; urgency=low
22

3-
* Release Wokkel 18.0.0 release candidate 1
3+
* Release Wokkel 18.0.0 release candidate 3
44

5-
-- Ralph Meijer <[email protected]> Wed, 21 Feb 2018 09:04:28 +0100
5+
-- Ralph Meijer <[email protected]> Wed, 28 Feb 2018 13:42:48 +0100
66

77
wokkel (0.7.1) testing; urgency=low
88

doc/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
# The short X.Y version.
5151
version = '18.0.0'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '18.0.0rc1'
53+
release = '18.0.0rc3'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ def _hacked_write_toplevel_names(cmd, basename, filename):
4242
classifiers=[
4343
'Programming Language :: Python :: 2.7',
4444
'Programming Language :: Python :: 3',
45-
'Programming Language :: Python :: 3.3',
4645
'Programming Language :: Python :: 3.4',
4746
'Programming Language :: Python :: 3.5',
4847
'Programming Language :: Python :: 3.6',

wokkel/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from incremental import Version
22

3-
__version__ = Version("wokkel", 18, 0, 0, 1)
3+
__version__ = Version("wokkel", 18, 0, 0, release_candidate=3)
44
__all__ = ["__version__"]

wokkel/generic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ def clientConnectionFailed(self, connector, reason):
334334

335335

336336

337-
@deprecated(Version("Wokkel", 0, 8, 0), "unicode.encode('idna')")
337+
@deprecated(Version("Wokkel", 18, 0, 0, release_candidate=3), "unicode.encode('idna')")
338338
def prepareIDNName(name):
339339
"""
340340
Encode a unicode IDN Domain Name into its ACE equivalent.

wokkel/test/test_generic.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -325,15 +325,15 @@ class PrepareIDNNameTests(unittest.TestCase):
325325
message=re.escape(
326326
deprecate.getDeprecationWarningString(
327327
generic.prepareIDNName,
328-
Version("Wokkel", 0, 8, 0),
328+
Version("Wokkel", 18, 0, 0, release_candidate=3),
329329
replacement="unicode.encode('idna')")))]
330330

331331

332332
def test_deprecated(self):
333333
"""
334334
prepareIDNName is deprecated.
335335
"""
336-
self.callDeprecated((Version("Wokkel", 0, 8, 0),
336+
self.callDeprecated((Version("Wokkel", 18, 0, 0, release_candidate=3),
337337
"unicode.encode('idna')"),
338338
generic.prepareIDNName, ("example.com"))
339339
test_deprecated.suppress = []

0 commit comments

Comments
 (0)