Skip to content

Commit d8c2488

Browse files
author
Gauvain Pocentek
committed
1.6.0 release
1 parent facbc8c commit d8c2488

File tree

4 files changed

+34
-2
lines changed

4 files changed

+34
-2
lines changed

AUTHORS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Aron Pammer <info@aronpammer.me>
1818
Asher256 <Asher256@users.noreply.github.com>
1919
Bancarel Valentin <bancarel.valentin@gmail.com>
2020
Ben Brown <ben.brown@codethink.co.uk>
21+
btmanm <btmanm@users.noreply.github.com>
2122
Carlo Mion <mion00@users.noreply.github.com>
2223
Carlos Soriano <csoriano@gnome.org>
2324
Christian <cgumpert@users.noreply.github.com>
@@ -27,6 +28,7 @@ Cosimo Lupo <cosimo.lupo@daltonmaag.com>
2728
Crestez Dan Leonard <lcrestez@ixiacom.com>
2829
Cyril Jouve <jv.cyril@gmail.com>
2930
Daniel Kimsey <dekimsey@ufl.edu>
31+
David Guest <owmtia@gmail.com>
3032
derek-austin <derek.austin35@mailinator.com>
3133
Diego Giovane Pasqualin <dpasqualin@c3sl.ufpr.br>
3234
Dmytro Litvinov <litvinov.do.it@gmail.com>
@@ -61,6 +63,7 @@ Mart Sõmermaa <mart.somermaa@cgi.com>
6163
massimone88 <stefano.mandruzzato@gmail.com>
6264
Matej Zerovnik <matej@zunaj.si>
6365
Matt Odden <locke105@gmail.com>
66+
Matthias Schmitz <matthias@sigxcpu.org>
6467
Matus Ferech <matus.ferech@telekom.com>
6568
Maura Hausman <mhausman@wayfair.com>
6669
Maxime Guyot <maxime.guyot@elits.com>
@@ -95,6 +98,8 @@ Stefan Klug <klug.stefan@gmx.de>
9598
Stefano Mandruzzato <stefano.mandruzzato@gmail.com>
9699
THEBAULT Julien <julien@thebault.co>
97100
Tim Neumann <mail@timnn.me>
101+
Tom Downes <tpdownes@users.noreply.github.com>
98102
Twan <tmeynen@inuits.eu>
103+
Will Rouesnel <w.rouesnel@gmail.com>
99104
Will Starms <vilhelmen@gmail.com>
100105
Yosi Zelensky <yosyos04@gmail.com>

ChangeLog.rst

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
ChangeLog
22
=========
33

4+
Version 1.6.0_ - 2018-08-25
5+
---------------------------
6+
7+
* [docs] Don't use hardcoded values for ids
8+
* [docs] Improve the snippets examples
9+
* [cli] Output: handle bytes in API responses
10+
* [cli] Fix the case where we have nothing to print
11+
* Project import: fix the override_params parameter
12+
* Support group and global MR listing
13+
* Implement MR.pipelines()
14+
* MR: add the squash attribute for create/update
15+
* Added support for listing forks of a project
16+
* [docs] Add/update notes about read-only objects
17+
* Raise an exception on https redirects for PUT/POST
18+
* [docs] Add a FAQ
19+
* [cli] Fix the project-export download
20+
421
Version 1.5.1_ - 2018-06-23
522
---------------------------
623

@@ -643,7 +660,8 @@ Version 0.1 - 2013-07-08
643660

644661
* Initial release
645662

646-
.. _1.5.1: https://github.com/python-gitlab/python-gitlab/compare/1.4.0...1.5.1
663+
.. _1.6.0: https://github.com/python-gitlab/python-gitlab/compare/1.5.1...1.6.0
664+
.. _1.5.1: https://github.com/python-gitlab/python-gitlab/compare/1.5.0...1.5.1
647665
.. _1.5.0: https://github.com/python-gitlab/python-gitlab/compare/1.4.0...1.5.0
648666
.. _1.4.0: https://github.com/python-gitlab/python-gitlab/compare/1.3.0...1.4.0
649667
.. _1.3.0: https://github.com/python-gitlab/python-gitlab/compare/1.2.0...1.3.0

RELEASE_NOTES.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ Release notes
44

55
This page describes important changes between python-gitlab releases.
66

7+
Changes from 1.5 to 1.6
8+
=======================
9+
10+
* When python-gitlab detects HTTP redirections from http to https it will raise
11+
a RedirectionError instead of a cryptic error.
12+
13+
Make sure to use an ``https://`` protocol in your GitLab URL parameter if the
14+
server requires it.
15+
716
Changes from 1.4 to 1.5
817
=======================
918

gitlab/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
from gitlab import utils # noqa
3232

3333
__title__ = 'python-gitlab'
34-
__version__ = '1.5.1'
34+
__version__ = '1.6.0'
3535
__author__ = 'Gauvain Pocentek'
3636
__email__ = 'gauvain@pocentek.net'
3737
__license__ = 'LGPL3'

0 commit comments

Comments
 (0)