Skip to content

Commit 3ad706e

Browse files
author
Gauvain Pocentek
committed
Prepare the 1.4.0 release
1 parent e6ecf65 commit 3ad706e

File tree

3 files changed

+39
-1
lines changed

3 files changed

+39
-1
lines changed

AUTHORS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Diego Giovane Pasqualin <dpasqualin@c3sl.ufpr.br>
3232
Dmytro Litvinov <litvinov.do.it@gmail.com>
3333
Eli Sarver <eli.sarver@gmail.com>
3434
Eric L Frederich <eric.frederich@siemens.com>
35+
Eric Sabouraud <esabouraud@users.noreply.github.com>
3536
Erik Weatherwax <erik.weatherwax@xls.xerox.com>
3637
fgouteroux <francois.gouteroux@d2-si.eu>
3738
Greg Allen <GregoryEAllen@users.noreply.github.com>
@@ -41,6 +42,7 @@ hakkeroid <hakkeroid@users.noreply.github.com>
4142
Ian Sparks <isparks@mdsol.com>
4243
itxaka <itxakaserrano@gmail.com>
4344
Ivica Arsov <ivica.arsov@sculpteo.com>
45+
Jakub Wilk <jwilk@jwilk.net>
4446
James (d0c_s4vage) Johnson <james.johnson@exodusintel.com>
4547
James E. Flemer <james.flemer@ndpgroup.com>
4648
James Johnson <d0c.s4vage@gmail.com>
@@ -58,7 +60,9 @@ Mart Sõmermaa <mart.somermaa@cgi.com>
5860
massimone88 <stefano.mandruzzato@gmail.com>
5961
Matej Zerovnik <matej@zunaj.si>
6062
Matt Odden <locke105@gmail.com>
63+
Matus Ferech <matus.ferech@telekom.com>
6164
Maura Hausman <mhausman@wayfair.com>
65+
Max Wittig <max.wittig@siemens.com>
6266
Michael Overmeyer <m.overmeyer@yahoo.ca>
6367
Michal Galet <michal.galet@gmail.com>
6468
Mike Kobit <mkobit@gmail.com>
@@ -88,5 +92,6 @@ Stefan Klug <klug.stefan@gmx.de>
8892
Stefano Mandruzzato <stefano.mandruzzato@gmail.com>
8993
THEBAULT Julien <julien@thebault.co>
9094
Tim Neumann <mail@timnn.me>
95+
Twan <tmeynen@inuits.eu>
9196
Will Starms <vilhelmen@gmail.com>
9297
Yosi Zelensky <yosyos04@gmail.com>

ChangeLog.rst

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,38 @@
11
ChangeLog
22
=========
33

4+
Version 1.4.0_ - 2018-05-19
5+
---------------------------
6+
7+
* Require requests>=2.4.2
8+
* ProjectKeys can be updated
9+
* Add support for unsharing projects (v3/v4)
10+
* [cli] fix listing for json and yaml output
11+
* Fix typos in documentation
12+
* Introduce RefreshMixin
13+
* [docs] Fix the time tracking examples
14+
* [docs] Commits: add an example of binary file creation
15+
* [cli] Allow to read args from files
16+
* Add support for recursive tree listing
17+
* [cli] Restore the --help option behavior
18+
* Add basic unit tests for v4 CLI
19+
* [cli] Fix listing of strings
20+
* Support downloading a single artifact file
21+
* Update docs copyright years
22+
* Implement attribute types to handle special cases
23+
* [docs] fix GitLab reference for notes
24+
* Expose additional properties for Gitlab objects
25+
* Fix the impersonation token deletion example
26+
* feat: obey the rate limit
27+
* Fix URL encoding on branch methods
28+
* [docs] add a code example for listing commits of a MR
29+
* [docs] update service.available() example for API v4
30+
* [tests] fix functional tests for python3
31+
* api-usage: bit more detail for listing with `all`
32+
* More efficient .get() for group members
33+
* Add docs for the `files` arg in http_*
34+
* Deprecate GetFromListMixin
35+
436
Version 1.3.0_ - 2018-02-18
537
---------------------------
638

@@ -553,6 +585,7 @@ Version 0.1 - 2013-07-08
553585

554586
* Initial release
555587

588+
.. _1.3.0: https://github.com/python-gitlab/python-gitlab/compare/1.3.0...1.4.0
556589
.. _1.3.0: https://github.com/python-gitlab/python-gitlab/compare/1.2.0...1.3.0
557590
.. _1.2.0: https://github.com/python-gitlab/python-gitlab/compare/1.1.0...1.2.0
558591
.. _1.1.0: https://github.com/python-gitlab/python-gitlab/compare/1.0.2...1.1.0

gitlab/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
from gitlab.v3.objects import * # noqa
3636

3737
__title__ = 'python-gitlab'
38-
__version__ = '1.3.0'
38+
__version__ = '1.4.0'
3939
__author__ = 'Gauvain Pocentek'
4040
__email__ = 'gauvain@pocentek.net'
4141
__license__ = 'LGPL3'

0 commit comments

Comments
 (0)