Skip to content

Commit

Permalink
get ready for a 0.9 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Gauvain Pocentek committed May 15, 2015
1 parent 1bc412e commit dce3193
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
20 changes: 16 additions & 4 deletions ChangeLog
@@ -1,7 +1,19 @@
Version 0.8.1

* Implemented argparse libray for parsing argument on CLI
* add custom action for InfoCert
Version 0.9

* Implement argparse libray for parsing argument on CLI
* Provide unit tests and (a few) functional tests
* Provide PEP8 tests
* Use tox to run the tests
* CLI: provide a --config-file option
* Turn the gitlab module into a proper package
* Allow projects to be updated
* Use more pythonic names for some methods
* Deprecate some Gitlab object methods:
- raw* methods should never have been exposed; replace them with _raw_*
methods
- setCredentials and setToken are replaced with set_credentials and
set_token
* Sphinx: don't hardcode the version in conf.py

Version 0.8

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -119,7 +119,7 @@ Get help with:
gitlab --help
# object help
gitlab project help
gitlab project --help
`````

Some examples:
Expand Down
2 changes: 1 addition & 1 deletion gitlab/__init__.py
Expand Up @@ -27,7 +27,7 @@
import six

__title__ = 'python-gitlab'
__version__ = '0.8.1'
__version__ = '0.9'
__author__ = 'Gauvain Pocentek'
__email__ = 'gauvain@pocentek.net'
__license__ = 'LGPL3'
Expand Down

0 comments on commit dce3193

Please sign in to comment.