diff options
| author | Gauvain Pocentek <gauvain@pocentek.net> | 2016-08-27 23:18:03 +0200 |
|---|---|---|
| committer | Gauvain Pocentek <gauvain@pocentek.net> | 2016-08-27 23:18:03 +0200 |
| commit | 79f46c24682026e319e1c9bc36267d2290c3a33e (patch) | |
| tree | 429d5327eabedcd17db4c81e4da1b82e4de69b10 | |
| parent | 8d7faf42b3e928ead8eb6eb58b7abf94364b53e2 (diff) | |
| download | gitlab-79f46c24682026e319e1c9bc36267d2290c3a33e.tar.gz | |
bump version and update changelog
| -rw-r--r-- | ChangeLog | 20 | ||||
| -rw-r--r-- | gitlab/__init__.py | 2 |
2 files changed, 21 insertions, 1 deletions
@@ -1,3 +1,23 @@ +Version 0.15 + + * Add a basic HTTP debug method + * Run more tests in travis + * Fix fork creation documentation + * Add more API examples in docs + * Update the ApplicationSettings attributes + * Implement the todo API + * Add sidekiq metrics support + * Move the constants at the gitlab root level + * Remove methods marked as deprecated 7 months ago + * Refactor the Gitlab class + * Remove _get_list_or_object() and its tests + * Fix canGet attribute (typo) + * Remove unused ProjectTagReleaseManager class + * Add support for project services API + * Add support for project pipelines + * Add support for access requests + * Add support for project deployments + Version 0.14 * Remove 'next_url' from kwargs before passing it to the cls constructor. diff --git a/gitlab/__init__.py b/gitlab/__init__.py index 61192f4..5f72d0d 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -33,7 +33,7 @@ from gitlab.exceptions import * # noqa from gitlab.objects import * # noqa __title__ = 'python-gitlab' -__version__ = '0.14' +__version__ = '0.15' __author__ = 'Gauvain Pocentek' __email__ = 'gauvain@pocentek.net' __license__ = 'LGPL3' |
