summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvain@pocentek.net>2019-02-22 09:46:13 +0100
committerGauvain Pocentek <gauvain@pocentek.net>2019-02-22 09:46:13 +0100
commit4fce3386cf54c9d66c44f5b9c267330928bd1efe (patch)
tree6d54a210f77e155e0f4aed83b8e6fb35e9217fa5
parent8ce4e9e07913d9b9bb916d079ff0a7c528830a2d (diff)
downloadgitlab-4fce3386cf54c9d66c44f5b9c267330928bd1efe.tar.gz
Release version 1.8.0
-rw-r--r--ChangeLog.rst15
-rw-r--r--RELEASE_NOTES.rst2
-rw-r--r--gitlab/__init__.py6
3 files changed, 20 insertions, 3 deletions
diff --git a/ChangeLog.rst b/ChangeLog.rst
index 3e96318..a1450e7 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,6 +1,20 @@
ChangeLog
=========
+Version 1.8.0_ - 2019-02-22
+---------------------------
+
+* docs(setup): use proper readme on PyPI
+* docs(readme): provide commit message guidelines
+* fix(api): make reset_time_estimate() work again
+* fix: handle empty 'Retry-After' header from GitLab
+* fix: remove decode() on error_message string
+* chore: release tags to PyPI automatically
+* fix(api): avoid parameter conflicts with python and gitlab
+* fix(api): Don't try to parse raw downloads
+* feat: Added approve & unapprove method for Mergerequests
+* fix all kwarg behaviour
+
Version 1.7.0_ - 2018-12-09
---------------------------
@@ -685,6 +699,7 @@ Version 0.1 - 2013-07-08
* Initial release
+.. _1.8.0: https://github.com/python-gitlab/python-gitlab/compare/1.7.0...1.8.0
.. _1.7.0: https://github.com/python-gitlab/python-gitlab/compare/1.6.0...1.7.0
.. _1.6.0: https://github.com/python-gitlab/python-gitlab/compare/1.5.1...1.6.0
.. _1.5.1: https://github.com/python-gitlab/python-gitlab/compare/1.5.0...1.5.1
diff --git a/RELEASE_NOTES.rst b/RELEASE_NOTES.rst
index 6abb980..44e457a 100644
--- a/RELEASE_NOTES.rst
+++ b/RELEASE_NOTES.rst
@@ -23,6 +23,8 @@ Changes from 1.7 to 1.8
query_parameters={'from': '2019-01-01'},
all=True)
+* Additionally the ``all`` paremeter is not sent to the GitLab anymore.
+
Changes from 1.5 to 1.6
=======================
diff --git a/gitlab/__init__.py b/gitlab/__init__.py
index 48f8da5..18f9d16 100644
--- a/gitlab/__init__.py
+++ b/gitlab/__init__.py
@@ -31,11 +31,11 @@ from gitlab.exceptions import * # noqa
from gitlab import utils # noqa
__title__ = 'python-gitlab'
-__version__ = '1.7.0'
+__version__ = '1.8.0'
__author__ = 'Gauvain Pocentek'
-__email__ = 'gauvain@pocentek.net'
+__email__ = 'gauvainpocentek@gmail.com'
__license__ = 'LGPL3'
-__copyright__ = 'Copyright 2013-2018 Gauvain Pocentek'
+__copyright__ = 'Copyright 2013-2019 Gauvain Pocentek'
warnings.filterwarnings('default', category=DeprecationWarning,
module='^gitlab')