diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2017-11-03 15:37:15 +0100 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2017-11-03 15:37:15 +0100 |
commit | 32f7e17208987fa345670421c333e22ae6aced6a (patch) | |
tree | f990d06fee4fa70dc9ce71d676c4d0616a018399 | |
parent | 9eff543a42014ba30cf8af099534d507f7acebd4 (diff) | |
download | gitlab-1.1.0.tar.gz |
1.1.0 release1.1.0
-rw-r--r-- | AUTHORS | 2 | ||||
-rw-r--r-- | ChangeLog.rst | 27 | ||||
-rw-r--r-- | gitlab/__init__.py | 2 |
3 files changed, 30 insertions, 1 deletions
@@ -43,11 +43,13 @@ James E. Flemer <james.flemer@ndpgroup.com> James Johnson <d0c.s4vage@gmail.com> Jamie Bliss <astronouth7303@gmail.com> Jason Antman <jason@jasonantman.com> +Jerome Robert <jeromerobert@gmx.com> Johan Brandhorst <johan@cognitivelogic.com> Jonathon Reinhart <Jonathon.Reinhart@gmail.com> Jon Banafato <jon@jonafato.com> Koen Smets <koen.smets@gmail.com> Kris Gambirazzi <Kris@sitehost.co.nz> +Lyudmil Nenov <lyudmil.nenov@gmail.com> Mart Sõmermaa <mart.somermaa@cgi.com> massimone88 <stefano.mandruzzato@gmail.com> Matej Zerovnik <matej@zunaj.si> diff --git a/ChangeLog.rst b/ChangeLog.rst index 7dbdda6..fe6b201 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,6 +1,32 @@ ChangeLog ========= +Version 1.1.0_ - 2017-11-03 +--------------------------- + +* Fix trigger variables in v4 API +* Make the delete() method handle / in ids +* [docs] update the file upload samples +* Tags release description: support / in tag names +* [docs] improve the labels usage documentation +* Add support for listing project users +* ProjectFileManager.create: handle / in file paths +* Change ProjectUser and GroupProject base class +* [docs] document `get_create_attrs` in the API tutorial +* Document the Gitlab session parameter +* ProjectFileManager: custom update() method +* Project: add support for printing_merge_request_link_enabled attr +* Update the ssl_verify docstring +* Add support for group milestones +* Add support for GPG keys +* Add support for wiki pages +* Update the repository_blob documentation +* Fix the CLI for objects without ID (API v4) +* Add a contributed Dockerfile +* Pagination generators: expose more information +* Module's base objects serialization +* [doc] Add sample code for client-side certificates + Version 1.0.2_ - 2017-09-29 --------------------------- @@ -469,6 +495,7 @@ Version 0.1 - 2013-07-08 * Initial release +.. _1.1.0: https://github.com/python-gitlab/python-gitlab/compare/1.0.2...1.1.0 .. _1.0.2: https://github.com/python-gitlab/python-gitlab/compare/1.0.1...1.0.2 .. _1.0.1: https://github.com/python-gitlab/python-gitlab/compare/1.0.0...1.0.1 .. _1.0.0: https://github.com/python-gitlab/python-gitlab/compare/0.21.2...1.0.0 diff --git a/gitlab/__init__.py b/gitlab/__init__.py index 965bf38..d5b480b 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -34,7 +34,7 @@ from gitlab.exceptions import * # noqa from gitlab.v3.objects import * # noqa __title__ = 'python-gitlab' -__version__ = '1.0.2' +__version__ = '1.1.0' __author__ = 'Gauvain Pocentek' __email__ = 'gauvain@pocentek.net' __license__ = 'LGPL3' |