diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2016-08-07 22:11:36 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2016-08-07 22:11:36 +0200 |
commit | e4624c9f17a8fbbe57da4316e6927f6d39bcc5a3 (patch) | |
tree | 7ebc33d0598cbc85b7c0e3e6a0114ec26b442889 | |
parent | 5614a7c9bf62aede3804469b6781f45d927508ea (diff) | |
download | gitlab-0.14.tar.gz |
Update changelog/authors/version for 0.140.14
-rw-r--r-- | AUTHORS | 7 | ||||
-rw-r--r-- | ChangeLog | 51 | ||||
-rw-r--r-- | gitlab/__init__.py | 2 |
3 files changed, 59 insertions, 1 deletions
@@ -29,3 +29,10 @@ 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> +Rafael Eyng <rafaeleyng@gmail.com> @@ -1,3 +1,54 @@ +Version 0.14 + + * Remove 'next_url' from kwargs before passing it to the cls constructor. + * List projects under group + * Add support for subscribe and unsubscribe in issues + * Project issue: doc and CLI for (un)subscribe + * Added support for HTTP basic authentication + * Add support for build artifacts and trace + * --title is a required argument for ProjectMilestone + * Commit status: add optional context url + * Commit status: optional get attrs + * Add support for commit comments + * Issues: add optional listing parameters + * Issues: add missing optional listing parameters + * Project issue: proper update attributes + * Add support for project-issue move + * Update ProjectLabel attributes + * Milestone: optional listing attrs + * Add support for namespaces + * Add support for label (un)subscribe + * MR: add (un)subscribe support + * Add `note_events` to project hooks attributes + * Add code examples for a bunch of resources + * Implement user emails support + * Project: add VISIBILITY_* constants + * Fix the Project.archive call + * Implement archive/unarchive for a projet + * Update ProjectSnippet attributes + * Fix ProjectMember update + * Implement sharing project with a group + * Implement CLI for project archive/unarchive/share + * Implement runners global API + * Gitlab: add managers for build-related resources + * Implement ProjectBuild.keep_artifacts + * Allow to stream the downloads when appropriate + * Groups can be updated + * Replace Snippet.Content() with a new content() method + * CLI: refactor _die() + * Improve commit statuses and comments + * Add support from listing group issues + * Added a new project attribute to enable the container registry. + * Add a contributing section in README + * Add support for global deploy key listing + * Add support for project environments + * MR: get list of changes and commits + * Fix the listing of some resources + * MR: fix updates + * Handle empty messages from server in exceptions + * MR (un)subscribe: don't fail if state doesn't change + * MR merge(): update the object + Version 0.13 * Add support for MergeRequest validation diff --git a/gitlab/__init__.py b/gitlab/__init__.py index 15a142c..fda3304 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -32,7 +32,7 @@ from gitlab.exceptions import * # noqa from gitlab.objects import * # noqa __title__ = 'python-gitlab' -__version__ = '0.13' +__version__ = '0.14' __author__ = 'Gauvain Pocentek' __email__ = 'gauvain@pocentek.net' __license__ = 'LGPL3' |