diff options
| -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' |
