Skip to content

Commit

Permalink
Merge pull request #201 from brettcannon/release-19.2
Browse files Browse the repository at this point in the history
Release 19.2
  • Loading branch information
brettcannon authored Sep 18, 2019
2 parents 81fdc08 + 98d388f commit 7890ca8
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
6 changes: 2 additions & 4 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
Changelog
---------

20.0 - master_
~~~~~~~~~~~~~~~~

.. note:: This version is not yet released and is under active development.
19.2 - 2019-09-18
~~~~~~~~~~~~~~~~~

* Remove dependency on ``attrs`` (:issue:`178`, :issue:`179`)

Expand Down
11 changes: 10 additions & 1 deletion docs/development/release-process.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ Release Process
===============

#. Checkout the current ``master`` branch, with a clean working directory.
#. Modify the ``CHANGELOG.rst`` to include changes made since the last release.
#. Modify the ``CHANGELOG.rst`` to include changes made since the last release
and update the section header for the new release.
#. Bump the version in ``packaging/__about__.py``

#. Install the latest ``setuptools``, ``wheel`` and ``twine`` packages
Expand All @@ -18,9 +19,17 @@ Release Process

$ twine check dist/*

#. Commit the changes to ``master``.

#. If all goes well, upload the build distribution files::

$ twine upload dist/*

#. Create a
`release on GitHub <https://github.com/pypa/packaging/releases>`_ and
include the artifacts uploaded to PyPI.

#. Bump the version for development in ``packaging/__about__.py`` and
``CHANGELOG.rst``.

#. Notify the other project owners of the release.
2 changes: 1 addition & 1 deletion packaging/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
__summary__ = "Core utilities for Python packages"
__uri__ = "https://github.com/pypa/packaging"

__version__ = "20.0.dev0"
__version__ = "19.2"

__author__ = "Donald Stufft and individual contributors"
__email__ = "[email protected]"
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
version=about["__version__"],
description=about["__summary__"],
long_description=long_description,
long_description_content_type="text/x-rst",
license=about["__license__"],
url=about["__uri__"],
author=about["__author__"],
Expand Down

0 comments on commit 7890ca8

Please sign in to comment.