File tree Expand file tree Collapse file tree 3 files changed +18
-6
lines changed
Expand file tree Collapse file tree 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
517
618Version 0.8
719
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ Get help with:
119119gitlab --help
120120
121121# object help
122- gitlab project help
122+ gitlab project -- help
123123`````
124124
125125Some examples:
Original file line number Diff line number Diff line change 2727import 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'
You can’t perform that action at this time.
0 commit comments