summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvain@pocentek.net>2016-08-07 22:11:36 +0200
committerGauvain Pocentek <gauvain@pocentek.net>2016-08-07 22:11:36 +0200
commite4624c9f17a8fbbe57da4316e6927f6d39bcc5a3 (patch)
tree7ebc33d0598cbc85b7c0e3e6a0114ec26b442889
parent5614a7c9bf62aede3804469b6781f45d927508ea (diff)
downloadgitlab-0.14.tar.gz
Update changelog/authors/version for 0.140.14
-rw-r--r--AUTHORS7
-rw-r--r--ChangeLog51
-rw-r--r--gitlab/__init__.py2
3 files changed, 59 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index dc45ad5..cf419dd 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -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>
diff --git a/ChangeLog b/ChangeLog
index 392a081..0baeb35 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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'