summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS6
-rw-r--r--ChangeLog.rst19
-rw-r--r--gitlab/__init__.py4
3 files changed, 26 insertions, 3 deletions
diff --git a/AUTHORS b/AUTHORS
index ac5d28f..c0bc7d6 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -36,7 +36,6 @@ Erik Weatherwax <erik.weatherwax@xls.xerox.com>
fgouteroux <francois.gouteroux@d2-si.eu>
Greg Allen <GregoryEAllen@users.noreply.github.com>
Guillaume Delacour <gui@iroqwa.org>
-Guyzmo <guyzmo+github@m0g.net>
Guyzmo <guyzmo+github+pub@m0g.net>
hakkeroid <hakkeroid@users.noreply.github.com>
Ian Sparks <isparks@mdsol.com>
@@ -51,6 +50,7 @@ Jerome Robert <jeromerobert@gmx.com>
Johan Brandhorst <johan@cognitivelogic.com>
Jonathon Reinhart <Jonathon.Reinhart@gmail.com>
Jon Banafato <jon@jonafato.com>
+Keith Wansbrough <keithw@lochan.org>
Koen Smets <koen.smets@gmail.com>
Kris Gambirazzi <Kris@sitehost.co.nz>
Lyudmil Nenov <lyudmil.nenov@gmail.com>
@@ -59,11 +59,14 @@ massimone88 <stefano.mandruzzato@gmail.com>
Matej Zerovnik <matej@zunaj.si>
Matt Odden <locke105@gmail.com>
Maura Hausman <mhausman@wayfair.com>
+Michael Overmeyer <m.overmeyer@yahoo.ca>
Michal Galet <michal.galet@gmail.com>
Mike Kobit <mkobit@gmail.com>
Mikhail Lopotkov <ms.lopotkov@tensor.ru>
+Miouge1 <Miouge1@users.noreply.github.com>
Missionrulz <missionrulz@gmail.com>
Mond WAN <mondwan@users.noreply.github.com>
+Moritz Lipp <github@mlq.me>
Nathan Giesbrecht <NathanGiesbrecht@users.noreply.github.com>
Nathan Schmidt <nathan@cascade-softworks.com>
pa4373 <pa4373@gmail.com>
@@ -74,6 +77,7 @@ Pete Browne <pete.browne@localmed.com>
Peter Mosmans <support@go-forward.net>
P. F. Chimento <philip.chimento@gmail.com>
Philipp Busch <philipp.busch@momox.biz>
+Pierre Tardy <tardyp@gmail.com>
Rafael Eyng <rafaeleyng@gmail.com>
Richard Hansen <rhansen@rhansen.org>
Robert Lu <robberphex@gmail.com>
diff --git a/ChangeLog.rst b/ChangeLog.rst
index 3049b9a..f1a45f2 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,6 +1,24 @@
ChangeLog
=========
+Version 1.3.0_ - 2018-02-18
+---------------------------
+
+* Add support for pipeline schedules and schedule variables
+* Clarify information about supported python version
+* Add manager for jobs within a pipeline
+* Fix wrong tag example
+* Update the groups documentation
+* Add support for MR participants API
+* Add support for getting list of user projects
+* Add Gitlab and User events support
+* Make trigger_pipeline return the pipeline
+* Config: support api_version in the global section
+* Gitlab can be used as context manager
+* Default to API v4
+* Add a simplified example for streamed artifacts
+* Add documentation about labels update
+
Version 1.2.0_ - 2018-01-01
---------------------------
@@ -535,6 +553,7 @@ Version 0.1 - 2013-07-08
* Initial release
+.. _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
.. _1.0.2: https://github.com/python-gitlab/python-gitlab/compare/1.0.1...1.0.2
diff --git a/gitlab/__init__.py b/gitlab/__init__.py
index c909f9f..17e60bc 100644
--- a/gitlab/__init__.py
+++ b/gitlab/__init__.py
@@ -34,11 +34,11 @@ from gitlab.exceptions import * # noqa
from gitlab.v3.objects import * # noqa
__title__ = 'python-gitlab'
-__version__ = '1.2.0'
+__version__ = '1.3.0'
__author__ = 'Gauvain Pocentek'
__email__ = 'gauvain@pocentek.net'
__license__ = 'LGPL3'
-__copyright__ = 'Copyright 2013-2017 Gauvain Pocentek'
+__copyright__ = 'Copyright 2013-2018 Gauvain Pocentek'
warnings.filterwarnings('default', category=DeprecationWarning,
module='^gitlab')