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 1
1
ChangeLog
2
2
=========
3
3
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
+
4
18
Version 1.7.0 _ - 2018-12-09
5
19
---------------------------
6
20
@@ -685,6 +699,7 @@ Version 0.1 - 2013-07-08
685
699
686
700
* Initial release
687
701
702
+ .. _1.8.0 : https://github.com/python-gitlab/python-gitlab/compare/1.7.0...1.8.0
688
703
.. _1.7.0 : https://github.com/python-gitlab/python-gitlab/compare/1.6.0...1.7.0
689
704
.. _1.6.0 : https://github.com/python-gitlab/python-gitlab/compare/1.5.1...1.6.0
690
705
.. _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
23
23
query_parameters={'from': '2019-01-01'},
24
24
all=True)
25
25
26
+ * Additionally the ``all `` paremeter is not sent to the GitLab anymore.
27
+
26
28
Changes from 1.5 to 1.6
27
29
=======================
28
30
Original file line number Diff line number Diff line change 31
31
from gitlab import utils # noqa
32
32
33
33
__title__ = 'python-gitlab'
34
- __version__ = '1.7 .0'
34
+ __version__ = '1.8 .0'
35
35
__author__ = 'Gauvain Pocentek'
36
- __email__ = 'gauvain@pocentek.net '
36
+ __email__ = 'gauvainpocentek@gmail.com '
37
37
__license__ = 'LGPL3'
38
- __copyright__ = 'Copyright 2013-2018 Gauvain Pocentek'
38
+ __copyright__ = 'Copyright 2013-2019 Gauvain Pocentek'
39
39
40
40
warnings .filterwarnings ('default' , category = DeprecationWarning ,
41
41
module = '^gitlab' )
You can’t perform that action at this time.
0 commit comments