Skip to content

Commit 4aaf34d

Browse files
author
Jordan Adler
committed
Prepare 0.18.0 release
1 parent e08da2c commit 4aaf34d

File tree

6 files changed

+55
-8
lines changed

6 files changed

+55
-8
lines changed

docs/compatible_idioms.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Cheat Sheet: Writing Python 2-3 compatible code
44
===============================================
55

6-
- **Copyright (c):** 2013-2018 Python Charmers Pty Ltd, Australia.
6+
- **Copyright (c):** 2013-2019 Python Charmers Pty Ltd, Australia.
77
- **Author:** Ed Schofield.
88
- **Licence:** Creative Commons Attribution.
99

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
# General information about the project.
5353
project = u'Python-Future'
54-
copyright = u'2013-2018, Python Charmers Pty Ltd, Australia'
54+
copyright = u'2013-2019, Python Charmers Pty Ltd, Australia'
5555

5656
# The version info for the project you're documenting, acts as replacement for
5757
# |version| and |release|, also used in various other places throughout the

docs/credits.rst

+23-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Licence
88
The software is distributed under an MIT licence. The text is as follows
99
(from ``LICENSE.txt``)::
1010

11-
Copyright (c) 2013-2018 Python Charmers Pty Ltd, Australia
11+
Copyright (c) 2013-2019 Python Charmers Pty Ltd, Australia
1212

1313
Permission is hereby granted, free of charge, to any person obtaining a copy
1414
of this software and associated documentation files (the "Software"), to deal
@@ -47,16 +47,25 @@ Authors
4747
-------
4848
Python-Future is largely written by Ed Schofield <[email protected]> with the help of various contributors:
4949

50+
- Jordan Adler
51+
- Kyle Altendorf
5052
- Grant Bakker
5153
- Jacob Beck
54+
- Fumihiro (Ben) Bessho
55+
- Shiva Bhusal
5256
- Nate Bogdanowicz
57+
- Tomer Chachamu
5358
- Christian Clauss
5459
- Denis Cornehl
5560
- Nicolas Delaby
61+
- Chad Dombrova
5662
- Jon Dufresne
5763
- Corey Farwell
5864
- Eric Firing
65+
- Joe Gordon
5966
- Maximilian Hils
67+
- Miro Hrončok
68+
- Mark Huang
6069
- Martijn Jacobs
6170
- Michael Joseph
6271
- Waldemar Kornewald
@@ -66,23 +75,36 @@ Python-Future is largely written by Ed Schofield <[email protected]> with th
6675
- Joshua Landau
6776
- German Larrain
6877
- Chris Lasher
78+
- ghanshyam lele
6979
- Calum Lind
80+
- Tobias Megies
81+
- Anika Mukherji
7082
- Jon Parise
7183
- Matthew Parnell
7284
- Miga Purg
7385
- Éloi Rivard
86+
- Sesh Sadasivam
7487
- Elliott Sales de Andrade
88+
- Aiden Scandella
7589
- Yury Selivanov
7690
- Tim Shaffer
91+
- Sameera Somisetty
7792
- Louis Sautier
93+
- Gregory P. Smith
7894
- Daniel Szoska
7995
- Flaviu Tamas
8096
- Jeff Tratner
8197
- Tim Tröndle
8298
- Brad Walker
99+
- Andrew Wason
100+
- Jeff Widman
101+
- Dan Yeaw
102+
- Hackalog (GitHub user)
83103
- lsm (GiHub user)
84104
- Mystic-Mirage (GitHub user)
85105
- str4d (GitHub user)
106+
- ucodery (GitHub user)
107+
- urain39 (GitHub user)
86108
- 9seconds (GitHub user)
87109
- Varriount (GitHub user)
88110

docs/notebooks/Writing Python 2-3 compatible code.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"cell_type": "markdown",
1212
"metadata": {},
1313
"source": [
14-
"- **Copyright (c):** 2013-2018 Python Charmers Pty Ltd, Australia.\n",
14+
"- **Copyright (c):** 2013-2019 Python Charmers Pty Ltd, Australia.\n",
1515
"- **Author:** Ed Schofield.\n",
1616
"- **Licence:** Creative Commons Attribution.\n",
1717
"\n",

docs/whatsnew.rst

+26-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,32 @@
33
What's New
44
**********
55

6-
What's new in version 0.17.1 (2019-10-30)
6+
What's new in version 0.18.0 (2019-10-09)
7+
=========================================
8+
This is a major bug-fix and feature release, including:
9+
10+
- Fix collections.abc import for py38+
11+
- Remove import for isnewbytes() function, reducing CPU cost significantly
12+
- Fix bug with importing past.translation when importing past which breaks zipped python installations
13+
- Fix an issue with copyreg import under Py3 that results in unexposed stdlib functionality
14+
- Export and document types in future.utils
15+
- Update behavior of newstr.__eq__() to match str.__eq__() as per reference docs
16+
- Fix raising and the raising fixer to handle cases where the syntax is ambigious
17+
- Allow "default" parameter in min() and max() (Issue #334)
18+
- Implement __hash__() in newstr (Issue #454)
19+
- Future proof some version checks to handle the fact that Py4 won't be a major breaking release
20+
- Fix urllib.request imports for Python 3.8 compatibility (Issue #447)
21+
- Fix future import ordering (Issue #445)
22+
- Fixed bug in fix_division_safe fixture (Issue #434)
23+
- Do not globally destroy re.ASCII in PY3
24+
- Fix a bug in email.Message.set_boundary() (Issue #429)
25+
- Implement format_map() in str
26+
- Implement readinto() for socket.fp
27+
28+
As well as a number of corrections to a variety of documentation, and updates to
29+
test infrastructure.
30+
31+
What's new in version 0.17.1 (2018-10-30)
732
=========================================
833
This release address a packaging error because of an erroneous declaration that
934
any built wheels are universal.

src/future/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
Credits
6969
-------
7070
71-
:Author: Ed Schofield
71+
:Author: Ed Schofield, Jordan M. Adler, et al
7272
:Sponsor: Python Charmers Pty Ltd, Australia, and Python Charmers Pte
7373
Ltd, Singapore. http://pythoncharmers.com
7474
:Others: See docs/credits.rst or http://python-future.org/credits.html
@@ -86,8 +86,8 @@
8686
__license__ = 'MIT'
8787
__copyright__ = 'Copyright 2013-2018 Python Charmers Pty Ltd'
8888
__ver_major__ = 0
89-
__ver_minor__ = 17
90-
__ver_patch__ = 1
89+
__ver_minor__ = 18
90+
__ver_patch__ = 0
9191
__ver_sub__ = ''
9292
__version__ = "%d.%d.%d%s" % (__ver_major__, __ver_minor__,
9393
__ver_patch__, __ver_sub__)

0 commit comments

Comments
 (0)