Skip to content

Commit 32f7e17

Browse files
author
Gauvain Pocentek
committed
1.1.0 release
1 parent 9eff543 commit 32f7e17

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

AUTHORS

+2
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,13 @@ James E. Flemer <james.flemer@ndpgroup.com>
4343
James Johnson <d0c.s4vage@gmail.com>
4444
Jamie Bliss <astronouth7303@gmail.com>
4545
Jason Antman <jason@jasonantman.com>
46+
Jerome Robert <jeromerobert@gmx.com>
4647
Johan Brandhorst <johan@cognitivelogic.com>
4748
Jonathon Reinhart <Jonathon.Reinhart@gmail.com>
4849
Jon Banafato <jon@jonafato.com>
4950
Koen Smets <koen.smets@gmail.com>
5051
Kris Gambirazzi <Kris@sitehost.co.nz>
52+
Lyudmil Nenov <lyudmil.nenov@gmail.com>
5153
Mart Sõmermaa <mart.somermaa@cgi.com>
5254
massimone88 <stefano.mandruzzato@gmail.com>
5355
Matej Zerovnik <matej@zunaj.si>

ChangeLog.rst

+27
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,32 @@
11
ChangeLog
22
=========
33

4+
Version 1.1.0_ - 2017-11-03
5+
---------------------------
6+
7+
* Fix trigger variables in v4 API
8+
* Make the delete() method handle / in ids
9+
* [docs] update the file upload samples
10+
* Tags release description: support / in tag names
11+
* [docs] improve the labels usage documentation
12+
* Add support for listing project users
13+
* ProjectFileManager.create: handle / in file paths
14+
* Change ProjectUser and GroupProject base class
15+
* [docs] document `get_create_attrs` in the API tutorial
16+
* Document the Gitlab session parameter
17+
* ProjectFileManager: custom update() method
18+
* Project: add support for printing_merge_request_link_enabled attr
19+
* Update the ssl_verify docstring
20+
* Add support for group milestones
21+
* Add support for GPG keys
22+
* Add support for wiki pages
23+
* Update the repository_blob documentation
24+
* Fix the CLI for objects without ID (API v4)
25+
* Add a contributed Dockerfile
26+
* Pagination generators: expose more information
27+
* Module's base objects serialization
28+
* [doc] Add sample code for client-side certificates
29+
430
Version 1.0.2_ - 2017-09-29
531
---------------------------
632

@@ -469,6 +495,7 @@ Version 0.1 - 2013-07-08
469495

470496
* Initial release
471497

498+
.. _1.1.0: https://github.com/python-gitlab/python-gitlab/compare/1.0.2...1.1.0
472499
.. _1.0.2: https://github.com/python-gitlab/python-gitlab/compare/1.0.1...1.0.2
473500
.. _1.0.1: https://github.com/python-gitlab/python-gitlab/compare/1.0.0...1.0.1
474501
.. _1.0.0: https://github.com/python-gitlab/python-gitlab/compare/0.21.2...1.0.0

gitlab/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
from gitlab.v3.objects import * # noqa
3535

3636
__title__ = 'python-gitlab'
37-
__version__ = '1.0.2'
37+
__version__ = '1.1.0'
3838
__author__ = 'Gauvain Pocentek'
3939
__email__ = 'gauvain@pocentek.net'
4040
__license__ = 'LGPL3'

0 commit comments

Comments
 (0)