From dce3193e03baa746228a91bdfdeaecd7aa8d5e10 Mon Sep 17 00:00:00 2001 From: Gauvain Pocentek Date: Fri, 15 May 2015 15:31:36 +0200 Subject: [PATCH] get ready for a 0.9 release --- ChangeLog | 20 ++++++++++++++++---- README.md | 2 +- gitlab/__init__.py | 2 +- 3 files changed, 18 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index d2343bb08..b5550b3c4 100644 --- a/ChangeLog +++ b/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 diff --git a/README.md b/README.md index 99921aeae..a88c2685c 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ Get help with: gitlab --help # object help -gitlab project help +gitlab project --help ````` Some examples: diff --git a/gitlab/__init__.py b/gitlab/__init__.py index 78fcfd082..93dee619b 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -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'