From e5c2a6c77e4d5b7d527c465b8dc37015b4da743d Mon Sep 17 00:00:00 2001 From: Johannes Dewender Date: Sat, 23 Feb 2019 12:15:06 +0100 Subject: [PATCH] set version/CHANGES for 1.2.0 --- CHANGES.rst | 5 +++++ discid/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index bf7854f..47576ca 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,11 @@ Changelog ========= +Changes in 1.2.0 (2019-02-23): +------------------------------ + * improve install with pip + * add Makefile + Changes in 1.1.1 (2017-01-29): ------------------------------ * workaround :issue:`43` for py2app problems diff --git a/discid/__init__.py b/discid/__init__.py index 02e4037..a35b7f6 100644 --- a/discid/__init__.py +++ b/discid/__init__.py @@ -33,7 +33,7 @@ import discid.libdiscid import discid.disc -__version__ = "1.1.1" +__version__ = "1.2.0" # these contants are defined here so sphinx can catch the "docstrings" diff --git a/setup.py b/setup.py index 1399de2..d533f36 100755 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ def run(self): long_description = readme.read() setup(name="discid", - version="1.1.1", + version="1.2.0", description="Python binding of Libdiscid", long_description=long_description, author="Johannes Dewender",