-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #73 from pganssle/version_0.1.0
Version 0.1.0 + CHANGELOG.rst
- Loading branch information
Showing
5 changed files
with
41 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Version 0.1.0 (2020-05-26) | ||
========================== | ||
|
||
This is the first public release of ``backports.zoneinfo``. It contains all the | ||
features from the ``zoneinfo`` release in Python 3.9.0b1, with the following | ||
changes: | ||
|
||
- Added support for Python 3.6, 3.7 and 3.8 (:gh-pr:`69`, :gh-pr:`70`). | ||
- The module is in the ``backports`` namespace rather than ``zoneinfo``. | ||
- There is no support for compile-time configuration of ``TZPATH``. | ||
- Fixed use-after-free in the ``module_free`` function (:bpo:`40705`, | ||
:gh-pr:`69`). | ||
- Minor refactoring to the C extension to avoid compiler warnings | ||
(:bpo:`40686`, :bpo:`40714`, :cpython-pr:`20342`, :gh-pr:`72`). | ||
- Removed unused imports, unused variables and other minor de-linting | ||
(:gh-pr:`71`). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.. Changelog transcluded from the changelog at the repo root | ||
========= | ||
Changelog | ||
========= | ||
|
||
.. include:: ../CHANGELOG.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ Contents: | |
:maxdepth: 1 | ||
|
||
zoneinfo | ||
changelog | ||
maintaining | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.1.0b1" | ||
__version__ = "0.1.0" |