diff options
-rw-r--r-- | AUTHORS | 62 | ||||
-rw-r--r-- | ChangeLog | 34 | ||||
-rw-r--r-- | gitlab/__init__.py | 2 |
3 files changed, 71 insertions, 27 deletions
@@ -7,37 +7,47 @@ Mika Mäenpää <mika.j.maenpaa@tut.fi> Contributors ------------ +Adam Reid <areid@navtech.aero> +Amar Sood (tekacs) <mail@tekacs.com> +Andrew Austin <aaustin@terremark.com> +Armin Weihbold <armin.weihbold@gmail.com> +Asher256 <Asher256@users.noreply.github.com> +Asher256@users.noreply.github.com <Asher256> +Christian <cgumpert@users.noreply.github.com> +Christian Wenk <christian.wenk@omicronenergy.com> +Colin D Bennett <colin.bennett@harman.com> +Crestez Dan Leonard <lcrestez@ixiacom.com> Daniel Kimsey <dekimsey@ufl.edu> +derek-austin <derek.austin35@mailinator.com> +Diego Giovane Pasqualin <dpasqualin@c3sl.ufpr.br> Erik Weatherwax <erik.weatherwax@xls.xerox.com> -Andrew Austin <aaustin@terremark.com> +fgouteroux <francois.gouteroux@d2-si.eu> +Greg Allen <GregoryEAllen@users.noreply.github.com> +Guyzmo <guyzmo+github@m0g.net> +hakkeroid <hakkeroid@users.noreply.github.com> +itxaka <itxakaserrano@gmail.com> +Ivica Arsov <ivica.arsov@sculpteo.com> +James (d0c_s4vage) Johnson <james.johnson@exodusintel.com> +Jason Antman <jason@jasonantman.com> +Jonathon Reinhart <Jonathon.Reinhart@gmail.com> Koen Smets <koen.smets@gmail.com> +Kris Gambirazzi <Kris@sitehost.co.nz> Mart Sõmermaa <mart.somermaa@cgi.com> -Diego Giovane Pasqualin <dpasqualin@c3sl.ufpr.br> -Crestez Dan Leonard <lcrestez@ixiacom.com> -Patrick Miller <patrick@velocitywebworks.com> -Stefano Mandruzzato <stefano.mandruzzato@gmail.com> -Jason Antman <jason@jasonantman.com> -Stefan Klug <klug.stefan@gmx.de> -pa4373 <pa4373@gmail.com> -Colin D Bennett <colin.bennett@harman.com> -François Gouteroux <francois.gouteroux@d2-si.eu> -Daniel Serodio <dserodio@gmail.com> -Colin D Bennett <colin.bennett@harman.com> -Richard Hansen <rhansen@rhansen.org> -James (d0c_s4vage) Johnson <james.johnson@exodusintel.com> +massimone88 <stefano.mandruzzato@gmail.com> +Matt Odden <locke105@gmail.com> +Michal Galet <michal.galet@gmail.com> Mikhail Lopotkov <ms.lopotkov@tensor.ru> -Asher256 <Asher256@users.noreply.github.com> -Adam Reid <areid@navtech.aero> -Guyzmo <guyzmo+github@m0g.net> -Christian Wenk <christian.wenk@omicronenergy.com> -Kris Gambirazzi <Kris@sitehost.co.nz> -Ivica Arsov <ivica.arsov@sculpteo.com> -Peter Mosmans <support@go-forward.net> -Stefan K. Dunkler <stefan.dun@gmail.com> Missionrulz <missionrulz@gmail.com> +pa4373 <pa4373@gmail.com> +Patrick Miller <patrick@velocitywebworks.com> +Peng Xiao <xiaoquwl@gmail.com> +Pete Browne <pete.browne@localmed.com> +Peter Mosmans <support@go-forward.net> +Philipp Busch <philipp.busch@momox.biz> Rafael Eyng <rafaeleyng@gmail.com> -Armin Weihbold <armin.weihbold@gmail.com> -derek-austin <derek.austin35@mailinator.com> -Jonathon Reinhart <Jonathon.Reinhart@gmail.com> -Michal Galet <michal.galet@gmail.com> +Richard Hansen <rhansen@rhansen.org> +samcday <sam.c.day@gmail.com> +Stefan K. Dunkler <stefan.dun@gmail.com> +Stefan Klug <klug.stefan@gmx.de> +Stefano Mandruzzato <stefano.mandruzzato@gmail.com> Will Starms <vilhelmen@gmail.com> @@ -1,3 +1,37 @@ +Version 0.17 + + * README: add badges for pypi and RTD + * Fix ProjectBuild.play (raised error on success) + * Pass kwargs to the object factory + * Add .tox to ignore to respect default tox settings + * Convert response list to single data source for iid requests + * Add support for boards API + * Add support for Gitlab.version() + * Add support for broadcast messages API + * Add support for the notification settings API + * Don't overwrite attributes returned by the server + * Fix bug when retrieving changes for merge request + * Feature: enable / disable the deploy key in a project + * Docs: add a note for python 3.5 for file content update + * ProjectHook: support the token attribute + * Rework the API documentation + * Fix docstring for http_{username,password} + * Build managers on demand on GitlabObject's + * API docs: add managers doc in GitlabObject's + * Sphinx ext: factorize the build methods + * Implement __repr__ for gitlab objects + * Add a 'report a bug' link on doc + * Remove deprecated methods + * Implement merge requests diff support + * Make the manager objects creation more dynamic + * Add support for templates API + * Add attr 'created_at' to ProjectIssueNote + * Add attr 'updated_at' to ProjectIssue + * CLI: add support for project all --all + * Add support for triggering a new build + * Rework requests arguments (support latest requests release) + * Fix `should_remove_source_branch` + Version 0.16 * Add the ability to fork to a specific namespace diff --git a/gitlab/__init__.py b/gitlab/__init__.py index 905c730..82a2414 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -34,7 +34,7 @@ from gitlab.exceptions import * # noqa from gitlab.objects import * # noqa __title__ = 'python-gitlab' -__version__ = '0.16' +__version__ = '0.17' __author__ = 'Gauvain Pocentek' __email__ = 'gauvain@pocentek.net' __license__ = 'LGPL3' |