Skip to content

Commit dce3193

Browse files
author
Gauvain Pocentek
committed
get ready for a 0.9 release
1 parent 1bc412e commit dce3193

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

ChangeLog

+16-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
1-
Version 0.8.1
2-
3-
* Implemented argparse libray for parsing argument on CLI
4-
* add custom action for InfoCert
1+
Version 0.9
2+
3+
* Implement argparse libray for parsing argument on CLI
4+
* Provide unit tests and (a few) functional tests
5+
* Provide PEP8 tests
6+
* Use tox to run the tests
7+
* CLI: provide a --config-file option
8+
* Turn the gitlab module into a proper package
9+
* Allow projects to be updated
10+
* Use more pythonic names for some methods
11+
* Deprecate some Gitlab object methods:
12+
- raw* methods should never have been exposed; replace them with _raw_*
13+
methods
14+
- setCredentials and setToken are replaced with set_credentials and
15+
set_token
16+
* Sphinx: don't hardcode the version in conf.py
517

618
Version 0.8
719

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Get help with:
119119
gitlab --help
120120
121121
# object help
122-
gitlab project help
122+
gitlab project --help
123123
`````
124124

125125
Some examples:

gitlab/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
import six
2828

2929
__title__ = 'python-gitlab'
30-
__version__ = '0.8.1'
30+
__version__ = '0.9'
3131
__author__ = 'Gauvain Pocentek'
3232
__email__ = 'gauvain@pocentek.net'
3333
__license__ = 'LGPL3'

0 commit comments

Comments
 (0)