diff options
-rw-r--r-- | AUTHORS | 4 | ||||
-rw-r--r-- | ChangeLog | 15 | ||||
-rw-r--r-- | gitlab/__init__.py | 4 |
3 files changed, 21 insertions, 2 deletions
@@ -8,7 +8,10 @@ Contributors ------------ Adam Reid <areid@navtech.aero> +Alex Widener <alexwidener@users.noreply.github.com> Amar Sood (tekacs) <mail@tekacs.com> +Andjelko Horvat <ahorvat@reflected.net> +Andreas Nüßlein <nutz@noova.de> Andrew Austin <aaustin@terremark.com> Armin Weihbold <armin.weihbold@gmail.com> Asher256 <Asher256@users.noreply.github.com> @@ -28,6 +31,7 @@ hakkeroid <hakkeroid@users.noreply.github.com> itxaka <itxakaserrano@gmail.com> Ivica Arsov <ivica.arsov@sculpteo.com> James (d0c_s4vage) Johnson <james.johnson@exodusintel.com> +James Johnson <d0c.s4vage@gmail.com> Jason Antman <jason@jasonantman.com> Jonathon Reinhart <Jonathon.Reinhart@gmail.com> Koen Smets <koen.smets@gmail.com> @@ -1,3 +1,18 @@ +Version 0.19 + + * Update project.archive() docs + * Support the scope attribute in runners.list() + * Add support for project runners + * Add support for commit creation + * Fix install doc + * Add builds-email and pipelines-email services + * Deploy keys: rework enable/disable + * Document the dynamic aspect of objects + * Add pipeline_events to ProjectHook attrs + * Add due_date attribute to ProjectIssue + * Handle settings.domain_whitelist, partly + * {Project,Group}Member: support expires_at attribute + Version 0.18 * Fix JIRA service editing for GitLab 8.14+ diff --git a/gitlab/__init__.py b/gitlab/__init__.py index e0051aa..119dab0 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -34,11 +34,11 @@ from gitlab.exceptions import * # noqa from gitlab.objects import * # noqa __title__ = 'python-gitlab' -__version__ = '0.18' +__version__ = '0.19' __author__ = 'Gauvain Pocentek' __email__ = 'gauvain@pocentek.net' __license__ = 'LGPL3' -__copyright__ = 'Copyright 2013-2016 Gauvain Pocentek' +__copyright__ = 'Copyright 2013-2017 Gauvain Pocentek' warnings.filterwarnings('default', category=DeprecationWarning, module='^gitlab') |