From 456f3c48e48dcff59e063c2572b6028f1abfba82 Mon Sep 17 00:00:00 2001 From: Gauvain Pocentek Date: Sun, 9 Dec 2018 09:37:38 +0100 Subject: [PATCH] Prepare the 1.7.0 release --- AUTHORS | 107 +++------------------------------------------ ChangeLog.rst | 26 +++++++++++ gitlab/__init__.py | 2 +- 3 files changed, 33 insertions(+), 102 deletions(-) diff --git a/AUTHORS b/AUTHORS index 11ae684ba..f255ad788 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,105 +1,10 @@ -Authors -------- +Authors / Maintainers +--------------------- -Gauvain Pocentek -Mika Mäenpää +Gauvain Pocentek +Max Wittig Contributors ------------ -Adam Reid -Alexander Skiba -Alex Widener -Amar Sood (tekacs) -Andjelko Horvat -Andreas Nüßlein -Andrew Austin -Armin Weihbold -Aron Pammer -Asher256 -Bancarel Valentin -Ben Brown -btmanm -Carlo Mion -Carlos Soriano -Christian -Christian Wenk -Colin D Bennett -Cosimo Lupo -Crestez Dan Leonard -Cyril Jouve -Daniel Kimsey -David Guest -derek-austin -Diego Giovane Pasqualin -Dmytro Litvinov -Eli Sarver -Eric L Frederich -Eric Sabouraud -Erik Weatherwax -fgouteroux -Greg Allen -Guillaume Delacour -Guyzmo -hakkeroid -Ian Sparks -itxaka -Ivica Arsov -Jakub Wilk -James (d0c_s4vage) Johnson -James E. Flemer -James Johnson -Jamie Bliss -Jason Antman -Jerome Robert -Johan Brandhorst -Jonathon Reinhart -Jon Banafato -Keith Wansbrough -Koen Smets -Kris Gambirazzi -leon -Lyudmil Nenov -Mart Sõmermaa -massimone88 -Matej Zerovnik -Matt Odden -Matthias Schmitz -Matus Ferech -Maura Hausman -Maxime Guyot -Max Wittig -Michael Overmeyer -Michal Galet -Mike Kobit -Mikhail Lopotkov -Miouge1 -Missionrulz -Mond WAN -Moritz Lipp -Nathan Giesbrecht -Nathan Schmidt -pa4373 -Patrick Miller -Pavel Savchenko -Peng Xiao -Pete Browne -Peter Mosmans -P. F. Chimento -Philipp Busch -Pierre Tardy -Rafael Eyng -Richard Hansen -Robert Lu -samcday -savenger -Stefan Crain -Stefan K. Dunkler -Stefan Klug -Stefano Mandruzzato -THEBAULT Julien -Tim Neumann -Tom Downes -Twan -Will Rouesnel -Will Starms -Yosi Zelensky + +See ``git log`` for a full list of contributors. diff --git a/ChangeLog.rst b/ChangeLog.rst index beac7ff94..3e96318fd 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,6 +1,31 @@ ChangeLog ========= +Version 1.7.0_ - 2018-12-09 +--------------------------- + +* [docs] Fix the owned/starred usage documentation +* [docs] Add a warning about http to https redirects +* Fix the https redirection test +* [docs] Add a note about GroupProject limited API +* Add missing comma in ProjectIssueManager _create_attrs +* More flexible docker image +* Add project protected tags management +* [cli] Print help and usage without config file +* Rename MASTER_ACCESS to MAINTAINER_ACCESS +* [docs] Add docs build information +* Use docker image with current sources +* [docs] Add PyYAML requirement notice +* Add Gitter badge to README +* [docs] Add an example of pipeline schedule vars listing +* [cli] Exit on config parse error, instead of crashing +* Add support for resource label events +* [docs] Fix the milestone filetring doc (iid -> iids) +* [docs] Fix typo in custom attributes example +* Improve error message handling in exceptions +* Add support for members all() method +* Add access control options to protected branch creation + Version 1.6.0_ - 2018-08-25 --------------------------- @@ -660,6 +685,7 @@ Version 0.1 - 2013-07-08 * Initial release +.. _1.7.0: https://github.com/python-gitlab/python-gitlab/compare/1.6.0...1.7.0 .. _1.6.0: https://github.com/python-gitlab/python-gitlab/compare/1.5.1...1.6.0 .. _1.5.1: https://github.com/python-gitlab/python-gitlab/compare/1.5.0...1.5.1 .. _1.5.0: https://github.com/python-gitlab/python-gitlab/compare/1.4.0...1.5.0 diff --git a/gitlab/__init__.py b/gitlab/__init__.py index 477d56428..01f9426d7 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -31,7 +31,7 @@ from gitlab import utils # noqa __title__ = 'python-gitlab' -__version__ = '1.6.0' +__version__ = '1.7.0' __author__ = 'Gauvain Pocentek' __email__ = 'gauvain@pocentek.net' __license__ = 'LGPL3'