Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 57fa4e3

Browse filesBrowse files
authored
Merge pull request python-gitlab#705 from python-gitlab/release-1.8.0
Release version 1.8.0
2 parents 8ce4e9e + 4fce338 commit 57fa4e3
Copy full SHA for 57fa4e3

File tree

Expand file treeCollapse file tree

3 files changed

+20
-3
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

3 files changed

+20
-3
lines changed
Open diff view settings
Collapse file

‎ChangeLog.rst‎

Copy file name to clipboardExpand all lines: ChangeLog.rst
+15Lines changed: 15 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
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
Collapse file

‎RELEASE_NOTES.rst‎

Copy file name to clipboardExpand all lines: RELEASE_NOTES.rst
+2Lines changed: 2 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
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

Collapse file

‎gitlab/__init__.py‎

Copy file name to clipboardExpand all lines: gitlab/__init__.py
+3-3Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.