Thanks to visit codestin.com
Credit goes to github.com

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 <[email protected]>
3232
Dmytro Litvinov <[email protected]>
3333
Eli Sarver <[email protected]>
3434
Eric L Frederich <[email protected]>
35+
Eric Sabouraud <[email protected]>
3536
Erik Weatherwax <[email protected]>
3637
fgouteroux <[email protected]>
3738
Greg Allen <[email protected]>
@@ -41,6 +42,7 @@ hakkeroid <[email protected]>
4142
Ian Sparks <[email protected]>
4243
4344
Ivica Arsov <[email protected]>
45+
Jakub Wilk <[email protected]>
4446
James (d0c_s4vage) Johnson <[email protected]>
4547
James E. Flemer <[email protected]>
4648
James Johnson <[email protected]>
@@ -58,7 +60,9 @@ Mart Sõmermaa <[email protected]>
5860
massimone88 <[email protected]>
5961
Matej Zerovnik <[email protected]>
6062
Matt Odden <[email protected]>
63+
Matus Ferech <[email protected]>
6164
Maura Hausman <[email protected]>
65+
Max Wittig <[email protected]>
6266
Michael Overmeyer <[email protected]>
6367
Michal Galet <[email protected]>
6468
Mike Kobit <[email protected]>
@@ -88,5 +92,6 @@ Stefan Klug <[email protected]>
8892
Stefano Mandruzzato <[email protected]>
8993
THEBAULT Julien <[email protected]>
9094
Tim Neumann <[email protected]>
95+
9196
Will Starms <[email protected]>
9297
Yosi Zelensky <[email protected]>

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__ = '[email protected]'
4141
__license__ = 'LGPL3'

0 commit comments

Comments
 (0)