diff options
| author | Gauvain Pocentek <gauvain@pocentek.net> | 2017-09-21 22:23:07 +0200 |
|---|---|---|
| committer | Gauvain Pocentek <gauvain@pocentek.net> | 2017-09-21 22:23:07 +0200 |
| commit | e5f59bd065ecfc3b66d101d7093a94995a7110e2 (patch) | |
| tree | 8b69629f4b7e72c1d1d9778dcc3d2fc6ee3a7f35 | |
| parent | a346f921560e6eb52f52ed0c660ecae7fcd73b6a (diff) | |
| download | gitlab-e5f59bd065ecfc3b66d101d7093a94995a7110e2.tar.gz | |
1.0.1 release1.0.1
| -rw-r--r-- | AUTHORS | 4 | ||||
| -rw-r--r-- | ChangeLog.rst | 16 | ||||
| -rw-r--r-- | gitlab/__init__.py | 2 |
3 files changed, 20 insertions, 2 deletions
@@ -17,7 +17,7 @@ Andrew Austin <aaustin@terremark.com> Armin Weihbold <armin.weihbold@gmail.com> Aron Pammer <info@aronpammer.me> Asher256 <Asher256@users.noreply.github.com> -Asher256@users.noreply.github.com <Asher256> +Carlo Mion <mion00@users.noreply.github.com> Christian <cgumpert@users.noreply.github.com> Christian Wenk <christian.wenk@omicronenergy.com> Colin D Bennett <colin.bennett@harman.com> @@ -54,6 +54,7 @@ Matej Zerovnik <matej@zunaj.si> Matt Odden <locke105@gmail.com> Maura Hausman <mhausman@wayfair.com> Michal Galet <michal.galet@gmail.com> +Mike Kobit <mkobit@gmail.com> Mikhail Lopotkov <ms.lopotkov@tensor.ru> Missionrulz <missionrulz@gmail.com> Mond WAN <mondwan@users.noreply.github.com> @@ -67,6 +68,7 @@ Peter Mosmans <support@go-forward.net> Philipp Busch <philipp.busch@momox.biz> Rafael Eyng <rafaeleyng@gmail.com> Richard Hansen <rhansen@rhansen.org> +Robert Lu <robberphex@gmail.com> samcday <sam.c.day@gmail.com> savenger <github@smahmood.de> Stefan K. Dunkler <stefan.dun@gmail.com> diff --git a/ChangeLog.rst b/ChangeLog.rst index 969d9ef..2ecb7cb 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,6 +1,21 @@ ChangeLog ========= +Version 1.0.1_ - 2017-09-21 +--------------------------- + +* Tags can be retrieved by ID +* Add the server response in GitlabError exceptions +* Add support for project file upload +* Minor typo fix in "Switching to v4" documentation +* Fix password authentication for v4 +* Fix the labels attrs on MR and issues +* Exceptions: use a proper error message +* Fix http_get method in get artifacts and job trace +* CommitStatus: `sha` is parent attribute +* Fix a couple listing calls to allow proper pagination +* Add missing doc file + Version 1.0.0_ - 2017-09-08 --------------------------- @@ -447,6 +462,7 @@ Version 0.1 - 2013-07-08 * Initial release +.. _1.0.1: https://github.com/python-gitlab/python-gitlab/compare/1.0.0...1.0.1 .. _1.0.0: https://github.com/python-gitlab/python-gitlab/compare/0.21.2...1.0.0 .. _0.21.2: https://github.com/python-gitlab/python-gitlab/compare/0.21.1...0.21.2 .. _0.21.1: https://github.com/python-gitlab/python-gitlab/compare/0.21...0.21.1 diff --git a/gitlab/__init__.py b/gitlab/__init__.py index 7fc0dcf..36a93ed 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -34,7 +34,7 @@ from gitlab.exceptions import * # noqa from gitlab.v3.objects import * # noqa __title__ = 'python-gitlab' -__version__ = '1.0.0' +__version__ = '1.0.1' __author__ = 'Gauvain Pocentek' __email__ = 'gauvain@pocentek.net' __license__ = 'LGPL3' |
