Skip to content

Commit aaed448

Browse files
committed
feat: bump version to 1.9.0
1 parent 4e1dd27 commit aaed448

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

ChangeLog.rst

+29
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,34 @@
11
ChangeLog
22
=========
33

4+
Version 1.9.0_ - 2019-06-19
5+
---------------------------
6+
7+
Features
8+
^^^^^^^^
9+
10+
- implement artifacts deletion
11+
- add endpoint to get the variables of a pipeline
12+
- delete ProjectPipeline
13+
- implement __eq__ and __hash__ methods
14+
- Allow runpy invocation of CLI tool (python -m gitlab)
15+
- add project releases api
16+
- merged new release & registry apis
17+
18+
Bug Fixes
19+
^^^^^^^^^
20+
21+
- convert # to %23 in URLs
22+
- pep8 errors
23+
- use python2 compatible syntax for super
24+
- Make MemberManager.all() return a list of objects
25+
- %d replaced by %s
26+
- Re-enable command specific help messages
27+
- dont ask for id attr if this is *Manager originating custom action
28+
- fix -/_ replacament for *Manager custom actions
29+
- fix repository_id marshaling in cli
30+
- register cli action for delete_in_bulk
31+
432
Version 1.8.0_ - 2019-02-22
533
---------------------------
634

@@ -699,6 +727,7 @@ Version 0.1 - 2013-07-08
699727

700728
* Initial release
701729

730+
.. _1.9.0: https://github.com/python-gitlab/python-gitlab/compare/1.8.0...1.9.0
702731
.. _1.8.0: https://github.com/python-gitlab/python-gitlab/compare/1.7.0...1.8.0
703732
.. _1.7.0: https://github.com/python-gitlab/python-gitlab/compare/1.6.0...1.7.0
704733
.. _1.6.0: https://github.com/python-gitlab/python-gitlab/compare/1.5.1...1.6.0

gitlab/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
from gitlab import utils # noqa
3232

3333
__title__ = "python-gitlab"
34-
__version__ = "1.8.0"
34+
__version__ = "1.9.0"
3535
__author__ = "Gauvain Pocentek"
3636
__email__ = "gauvainpocentek@gmail.com"
3737
__license__ = "LGPL3"

0 commit comments

Comments
 (0)