File tree 3 files changed +18
-6
lines changed
3 files changed +18
-6
lines changed Original file line number Diff line number Diff line change 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
5
17
6
18
Version 0.8
7
19
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ Get help with:
119
119
gitlab --help
120
120
121
121
# object help
122
- gitlab project help
122
+ gitlab project -- help
123
123
`````
124
124
125
125
Some examples:
Original file line number Diff line number Diff line change 27
27
import six
28
28
29
29
__title__ = 'python-gitlab'
30
- __version__ = '0.8.1 '
30
+ __version__ = '0.9 '
31
31
__author__ = 'Gauvain Pocentek'
32
32
__email__ = 'gauvain@pocentek.net'
33
33
__license__ = 'LGPL3'
You can’t perform that action at this time.
0 commit comments