diff options
author | Max Wittig <max.wittig@siemens.com> | 2019-06-18 09:58:23 +0200 |
---|---|---|
committer | Max Wittig <max.wittig@siemens.com> | 2019-06-19 11:11:02 +0200 |
commit | aaed44837869bd2ce22b6f0d2e1196b1d0e626a6 (patch) | |
tree | 3903666451ee8b0a648e1b0a42579106d6fd6dc3 | |
parent | 4e1dd27d6400acd152be19692f3193f948422769 (diff) | |
download | gitlab-feat/version-bump.tar.gz |
feat: bump version to 1.9.0feat/version-bump
-rw-r--r-- | ChangeLog.rst | 29 | ||||
-rw-r--r-- | gitlab/__init__.py | 2 |
2 files changed, 30 insertions, 1 deletions
diff --git a/ChangeLog.rst b/ChangeLog.rst index a1450e7..a6afe0b 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,6 +1,34 @@ ChangeLog ========= +Version 1.9.0_ - 2019-06-19 +--------------------------- + +Features +^^^^^^^^ + +- implement artifacts deletion +- add endpoint to get the variables of a pipeline +- delete ProjectPipeline +- implement __eq__ and __hash__ methods +- Allow runpy invocation of CLI tool (python -m gitlab) +- add project releases api +- merged new release & registry apis + +Bug Fixes +^^^^^^^^^ + +- convert # to %23 in URLs +- pep8 errors +- use python2 compatible syntax for super +- Make MemberManager.all() return a list of objects +- %d replaced by %s +- Re-enable command specific help messages +- dont ask for id attr if this is *Manager originating custom action +- fix -/_ replacament for *Manager custom actions +- fix repository_id marshaling in cli +- register cli action for delete_in_bulk + Version 1.8.0_ - 2019-02-22 --------------------------- @@ -699,6 +727,7 @@ Version 0.1 - 2013-07-08 * Initial release +.. _1.9.0: https://github.com/python-gitlab/python-gitlab/compare/1.8.0...1.9.0 .. _1.8.0: https://github.com/python-gitlab/python-gitlab/compare/1.7.0...1.8.0 .. _1.7.0: https://github.com/python-gitlab/python-gitlab/compare/1.6.0...1.7.0 .. _1.6.0: https://github.com/python-gitlab/python-gitlab/compare/1.5.1...1.6.0 diff --git a/gitlab/__init__.py b/gitlab/__init__.py index fb21985..10c65b1 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -31,7 +31,7 @@ from gitlab.exceptions import * # noqa from gitlab import utils # noqa __title__ = "python-gitlab" -__version__ = "1.8.0" +__version__ = "1.9.0" __author__ = "Gauvain Pocentek" __email__ = "gauvainpocentek@gmail.com" __license__ = "LGPL3" |