Skip to content

Commit 4fce338

Browse files
author
Gauvain Pocentek
committed
Release version 1.8.0
1 parent 8ce4e9e commit 4fce338

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

ChangeLog.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
ChangeLog
22
=========
33

4+
Version 1.8.0_ - 2019-02-22
5+
---------------------------
6+
7+
* docs(setup): use proper readme on PyPI
8+
* docs(readme): provide commit message guidelines
9+
* fix(api): make reset_time_estimate() work again
10+
* fix: handle empty 'Retry-After' header from GitLab
11+
* fix: remove decode() on error_message string
12+
* chore: release tags to PyPI automatically
13+
* fix(api): avoid parameter conflicts with python and gitlab
14+
* fix(api): Don't try to parse raw downloads
15+
* feat: Added approve & unapprove method for Mergerequests
16+
* fix all kwarg behaviour
17+
418
Version 1.7.0_ - 2018-12-09
519
---------------------------
620

@@ -685,6 +699,7 @@ Version 0.1 - 2013-07-08
685699

686700
* Initial release
687701

702+
.. _1.8.0: https://github.com/python-gitlab/python-gitlab/compare/1.7.0...1.8.0
688703
.. _1.7.0: https://github.com/python-gitlab/python-gitlab/compare/1.6.0...1.7.0
689704
.. _1.6.0: https://github.com/python-gitlab/python-gitlab/compare/1.5.1...1.6.0
690705
.. _1.5.1: https://github.com/python-gitlab/python-gitlab/compare/1.5.0...1.5.1

RELEASE_NOTES.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ Changes from 1.7 to 1.8
2323
query_parameters={'from': '2019-01-01'},
2424
all=True)
2525

26+
* Additionally the ``all`` paremeter is not sent to the GitLab anymore.
27+
2628
Changes from 1.5 to 1.6
2729
=======================
2830

gitlab/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@
3131
from gitlab import utils # noqa
3232

3333
__title__ = 'python-gitlab'
34-
__version__ = '1.7.0'
34+
__version__ = '1.8.0'
3535
__author__ = 'Gauvain Pocentek'
36-
__email__ = 'gauvain@pocentek.net'
36+
__email__ = 'gauvainpocentek@gmail.com'
3737
__license__ = 'LGPL3'
38-
__copyright__ = 'Copyright 2013-2018 Gauvain Pocentek'
38+
__copyright__ = 'Copyright 2013-2019 Gauvain Pocentek'
3939

4040
warnings.filterwarnings('default', category=DeprecationWarning,
4141
module='^gitlab')

0 commit comments

Comments
 (0)