Skip to content

feat: bump version to 1.9.0 #797

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions ChangeLog.rst
Original file line number Diff line number Diff line change
@@ -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
---------------------------

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion gitlab/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
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"
Expand Down