Skip to content

Commit

Permalink
Changes for 0.3.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
vsajip committed Jun 27, 2020
1 parent 926361c commit 6d13110
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
14 changes: 13 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,25 @@ Change log for ``distlib``
--------------------------


0.3.1 (future)
0.3.2 (future)
~~~~~~~~~~~~~~

Released: Not yet.


0.3.1
~~~~~

Released: 2020-06-27

The repository has been migrated to Git. References to earlier changesets (commits) in
issue comments, etc. will be invalid.

- scripts

- Fixed #132: Added documentation to help with relative interpreter paths. Thanks
to Paul Kienzle for the patch.

- Fixed #134: Allowed specifying a different target Python version when generating
scripts.

Expand Down
2 changes: 1 addition & 1 deletion distlib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#
import logging

__version__ = '0.3.1.dev0'
__version__ = '0.3.1'

class DistlibException(Exception):
pass
Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '0.3'
# The full version, including alpha/beta/rc tags.
release = '0.3.1.dev0'
from distlib import __version__ as release
# The short X.Y version.
version = release[:3]

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

0 comments on commit 6d13110

Please sign in to comment.