diff --git a/HISTORY.rst b/HISTORY.rst index 826a10a..2dc33d6 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,15 +3,17 @@ History ------- -1.1.1a (current) ------------------ +1.1.1 (2020-05-01) +------------------ * Fixed package Python requirement metadata to Python 3.5+ * Added an option to ignore SSL certificate * GitLab integration minor fixes * Upgraded Dparse and Safety requirement * Fixed `#343`_ affecting Cookiecutter projects +* Fixed `#348`_ affecting GitLab branch removal .. _#343: https://github.com/pyupio/pyup/issues/343 +.. _#348: https://github.com/pyupio/pyup/pull/348 1.1.0 (2020-3-14) ----------------- diff --git a/pyup/__init__.py b/pyup/__init__.py index 22a8ff7..b3ddbc4 100644 --- a/pyup/__init__.py +++ b/pyup/__init__.py @@ -1 +1 @@ -__version__ = '1.1.1a' +__version__ = '1.1.1' diff --git a/setup.cfg b/setup.cfg index 55ff9e7..84174ff 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.1a +current_version = 1.1.1 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?P
[a-z]*)
diff --git a/setup.py b/setup.py
index c5535c3..f2c02c6 100755
--- a/setup.py
+++ b/setup.py
@@ -29,7 +29,7 @@
 
 setup(
     name='pyupio',
-    version='1.1.1a',
+    version='1.1.1',
     description="A tool to update all your projects requirements",
     long_description=readme + '\n\n' + history,
     long_description_content_type="text/x-rst",