Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 10bd1f4

Browse filesBrowse files
author
Gauvain Pocentek
committed
Prepare the 1.3.0 release
1 parent d63748a commit 10bd1f4
Copy full SHA for 10bd1f4

File tree

Expand file treeCollapse file tree

3 files changed

+26
-3
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

3 files changed

+26
-3
lines changed
Open diff view settings
Collapse file

‎AUTHORS‎

Copy file name to clipboardExpand all lines: AUTHORS
+5-1Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ Erik Weatherwax <erik.weatherwax@xls.xerox.com>
3636
fgouteroux <francois.gouteroux@d2-si.eu>
3737
Greg Allen <GregoryEAllen@users.noreply.github.com>
3838
Guillaume Delacour <gui@iroqwa.org>
39-
Guyzmo <guyzmo+github@m0g.net>
4039
Guyzmo <guyzmo+github+pub@m0g.net>
4140
hakkeroid <hakkeroid@users.noreply.github.com>
4241
Ian Sparks <isparks@mdsol.com>
@@ -51,6 +50,7 @@ Jerome Robert <jeromerobert@gmx.com>
5150
Johan Brandhorst <johan@cognitivelogic.com>
5251
Jonathon Reinhart <Jonathon.Reinhart@gmail.com>
5352
Jon Banafato <jon@jonafato.com>
53+
Keith Wansbrough <keithw@lochan.org>
5454
Koen Smets <koen.smets@gmail.com>
5555
Kris Gambirazzi <Kris@sitehost.co.nz>
5656
Lyudmil Nenov <lyudmil.nenov@gmail.com>
@@ -59,11 +59,14 @@ massimone88 <stefano.mandruzzato@gmail.com>
5959
Matej Zerovnik <matej@zunaj.si>
6060
Matt Odden <locke105@gmail.com>
6161
Maura Hausman <mhausman@wayfair.com>
62+
Michael Overmeyer <m.overmeyer@yahoo.ca>
6263
Michal Galet <michal.galet@gmail.com>
6364
Mike Kobit <mkobit@gmail.com>
6465
Mikhail Lopotkov <ms.lopotkov@tensor.ru>
66+
Miouge1 <Miouge1@users.noreply.github.com>
6567
Missionrulz <missionrulz@gmail.com>
6668
Mond WAN <mondwan@users.noreply.github.com>
69+
Moritz Lipp <github@mlq.me>
6770
Nathan Giesbrecht <NathanGiesbrecht@users.noreply.github.com>
6871
Nathan Schmidt <nathan@cascade-softworks.com>
6972
pa4373 <pa4373@gmail.com>
@@ -74,6 +77,7 @@ Pete Browne <pete.browne@localmed.com>
7477
Peter Mosmans <support@go-forward.net>
7578
P. F. Chimento <philip.chimento@gmail.com>
7679
Philipp Busch <philipp.busch@momox.biz>
80+
Pierre Tardy <tardyp@gmail.com>
7781
Rafael Eyng <rafaeleyng@gmail.com>
7882
Richard Hansen <rhansen@rhansen.org>
7983
Robert Lu <robberphex@gmail.com>
Collapse file

‎ChangeLog.rst‎

Copy file name to clipboardExpand all lines: ChangeLog.rst
+19Lines changed: 19 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
ChangeLog
22
=========
33

4+
Version 1.3.0_ - 2018-02-18
5+
---------------------------
6+
7+
* Add support for pipeline schedules and schedule variables
8+
* Clarify information about supported python version
9+
* Add manager for jobs within a pipeline
10+
* Fix wrong tag example
11+
* Update the groups documentation
12+
* Add support for MR participants API
13+
* Add support for getting list of user projects
14+
* Add Gitlab and User events support
15+
* Make trigger_pipeline return the pipeline
16+
* Config: support api_version in the global section
17+
* Gitlab can be used as context manager
18+
* Default to API v4
19+
* Add a simplified example for streamed artifacts
20+
* Add documentation about labels update
21+
422
Version 1.2.0_ - 2018-01-01
523
---------------------------
624

@@ -535,6 +553,7 @@ Version 0.1 - 2013-07-08
535553

536554
* Initial release
537555

556+
.. _1.3.0: https://github.com/python-gitlab/python-gitlab/compare/1.2.0...1.3.0
538557
.. _1.2.0: https://github.com/python-gitlab/python-gitlab/compare/1.1.0...1.2.0
539558
.. _1.1.0: https://github.com/python-gitlab/python-gitlab/compare/1.0.2...1.1.0
540559
.. _1.0.2: https://github.com/python-gitlab/python-gitlab/compare/1.0.1...1.0.2
Collapse file

‎gitlab/__init__.py‎

Copy file name to clipboardExpand all lines: gitlab/__init__.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@
3434
from gitlab.v3.objects import * # noqa
3535

3636
__title__ = 'python-gitlab'
37-
__version__ = '1.2.0'
37+
__version__ = '1.3.0'
3838
__author__ = 'Gauvain Pocentek'
3939
__email__ = 'gauvain@pocentek.net'
4040
__license__ = 'LGPL3'
41-
__copyright__ = 'Copyright 2013-2017 Gauvain Pocentek'
41+
__copyright__ = 'Copyright 2013-2018 Gauvain Pocentek'
4242

4343
warnings.filterwarnings('default', category=DeprecationWarning,
4444
module='^gitlab')

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.