File tree Expand file tree Collapse file tree 3 files changed +20
-3
lines changed
Expand file tree Collapse file tree 3 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 11ChangeLog
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+
418Version 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
Original file line number Diff line number Diff 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+
2628Changes from 1.5 to 1.6
2729=======================
2830
Original file line number Diff line number Diff line change 3131from 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
4040warnings .filterwarnings ('default' , category = DeprecationWarning ,
4141 module = '^gitlab' )
You can’t perform that action at this time.
0 commit comments