summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvain@pocentek.net>2018-05-19 15:41:56 +0200
committerGauvain Pocentek <gauvain@pocentek.net>2018-05-19 15:41:56 +0200
commit3ad706eefb60caf34b4db3e9c04bbd119040f0db (patch)
tree7d0d3d96ec4d0170ff22f91eb84bf4599e9ed536
parente6ecf65c5f0bd3f95a47af6bbe484af9bbd68ca6 (diff)
downloadgitlab-3ad706eefb60caf34b4db3e9c04bbd119040f0db.tar.gz
Prepare the 1.4.0 release
-rw-r--r--AUTHORS5
-rw-r--r--ChangeLog.rst33
-rw-r--r--gitlab/__init__.py2
3 files changed, 39 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index c0bc7d6..2714d31 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -32,6 +32,7 @@ Diego Giovane Pasqualin <dpasqualin@c3sl.ufpr.br>
Dmytro Litvinov <litvinov.do.it@gmail.com>
Eli Sarver <eli.sarver@gmail.com>
Eric L Frederich <eric.frederich@siemens.com>
+Eric Sabouraud <esabouraud@users.noreply.github.com>
Erik Weatherwax <erik.weatherwax@xls.xerox.com>
fgouteroux <francois.gouteroux@d2-si.eu>
Greg Allen <GregoryEAllen@users.noreply.github.com>
@@ -41,6 +42,7 @@ hakkeroid <hakkeroid@users.noreply.github.com>
Ian Sparks <isparks@mdsol.com>
itxaka <itxakaserrano@gmail.com>
Ivica Arsov <ivica.arsov@sculpteo.com>
+Jakub Wilk <jwilk@jwilk.net>
James (d0c_s4vage) Johnson <james.johnson@exodusintel.com>
James E. Flemer <james.flemer@ndpgroup.com>
James Johnson <d0c.s4vage@gmail.com>
@@ -58,7 +60,9 @@ Mart Sõmermaa <mart.somermaa@cgi.com>
massimone88 <stefano.mandruzzato@gmail.com>
Matej Zerovnik <matej@zunaj.si>
Matt Odden <locke105@gmail.com>
+Matus Ferech <matus.ferech@telekom.com>
Maura Hausman <mhausman@wayfair.com>
+Max Wittig <max.wittig@siemens.com>
Michael Overmeyer <m.overmeyer@yahoo.ca>
Michal Galet <michal.galet@gmail.com>
Mike Kobit <mkobit@gmail.com>
@@ -88,5 +92,6 @@ Stefan Klug <klug.stefan@gmx.de>
Stefano Mandruzzato <stefano.mandruzzato@gmail.com>
THEBAULT Julien <julien@thebault.co>
Tim Neumann <mail@timnn.me>
+Twan <tmeynen@inuits.eu>
Will Starms <vilhelmen@gmail.com>
Yosi Zelensky <yosyos04@gmail.com>
diff --git a/ChangeLog.rst b/ChangeLog.rst
index e1d06cb..c215596 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,6 +1,38 @@
ChangeLog
=========
+Version 1.4.0_ - 2018-05-19
+---------------------------
+
+* Require requests>=2.4.2
+* ProjectKeys can be updated
+* Add support for unsharing projects (v3/v4)
+* [cli] fix listing for json and yaml output
+* Fix typos in documentation
+* Introduce RefreshMixin
+* [docs] Fix the time tracking examples
+* [docs] Commits: add an example of binary file creation
+* [cli] Allow to read args from files
+* Add support for recursive tree listing
+* [cli] Restore the --help option behavior
+* Add basic unit tests for v4 CLI
+* [cli] Fix listing of strings
+* Support downloading a single artifact file
+* Update docs copyright years
+* Implement attribute types to handle special cases
+* [docs] fix GitLab reference for notes
+* Expose additional properties for Gitlab objects
+* Fix the impersonation token deletion example
+* feat: obey the rate limit
+* Fix URL encoding on branch methods
+* [docs] add a code example for listing commits of a MR
+* [docs] update service.available() example for API v4
+* [tests] fix functional tests for python3
+* api-usage: bit more detail for listing with `all`
+* More efficient .get() for group members
+* Add docs for the `files` arg in http_*
+* Deprecate GetFromListMixin
+
Version 1.3.0_ - 2018-02-18
---------------------------
@@ -553,6 +585,7 @@ Version 0.1 - 2013-07-08
* Initial release
+.. _1.3.0: https://github.com/python-gitlab/python-gitlab/compare/1.3.0...1.4.0
.. _1.3.0: https://github.com/python-gitlab/python-gitlab/compare/1.2.0...1.3.0
.. _1.2.0: https://github.com/python-gitlab/python-gitlab/compare/1.1.0...1.2.0
.. _1.1.0: https://github.com/python-gitlab/python-gitlab/compare/1.0.2...1.1.0
diff --git a/gitlab/__init__.py b/gitlab/__init__.py
index 140c916..f0eb136 100644
--- a/gitlab/__init__.py
+++ b/gitlab/__init__.py
@@ -35,7 +35,7 @@ from gitlab.exceptions import * # noqa
from gitlab.v3.objects import * # noqa
__title__ = 'python-gitlab'
-__version__ = '1.3.0'
+__version__ = '1.4.0'
__author__ = 'Gauvain Pocentek'
__email__ = 'gauvain@pocentek.net'
__license__ = 'LGPL3'