Skip to content

Commit

Permalink
Bump version to 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tivaliy committed Jan 3, 2018
1 parent 62a7f02 commit ab98fca
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
7 changes: 4 additions & 3 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
CHANGES
=======

* Bump version to 0.1.0
* Fix test runner config issues with os-testr 1.0.0
* Update .gitignore
* Add pypi badge to README.md
Expand Down Expand Up @@ -28,7 +29,7 @@ CHANGES
* Add option '-d/--draft' to 'gerrit change comment list' command
* Add new 'gerrit change comment list' command
* Check the response not empty before fetching columns
* Replace special characters in {change\_id} using the %xx escape
* Replace special characters in {change_id} using the %xx escape
* Add new 'gerrit change index' command
* Add new 'gerrit change included-in show' command
* Add new 'gerrit change draft publish' command
Expand Down Expand Up @@ -89,7 +90,7 @@ CHANGES
* Add new 'gerrit account password set' command
* Add commands to enable/disable accounts
* Add new 'gerrit account username set' command
* Align 'test\_group\_set\_description' test case
* Align 'test_group_set_description' test case
* Add new 'gerrit account name set' command
* Add 'gerrit account create' command
* Add '-a/--all' optional argument to 'gerrit account show' command
Expand All @@ -101,7 +102,7 @@ CHANGES
* Add 'gerrit group description delete' command
* Make possible to encode project name
* Code refactoring for PluginClient and ProjectClient
* 'gerrit group \*' related command code refactoring
* 'gerrit group *' related command code refactoring
* Add 'gerrit group description set' command
* Add 'gerrit group rename' command
* Add 'gerrit project delete' command
Expand Down
4 changes: 2 additions & 2 deletions gerritclient/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def run(self, argv):
def main(argv=sys.argv[1:]):
gerritclient_app = GerritClient(
description='CLI tool for managing Gerrit Code Review.',
version='0.0.1',
version='0.1.0',
command_manager=CommandManager('gerritclient',
convert_underscores=True),
deferred_help=True
Expand All @@ -56,6 +56,6 @@ def debug(name, cmd_class, argv=None):
cmd_mgr.add_command(name, cmd_class)
return GerritClient(
description="CLI tool for managing Gerrit Code Review.",
version='0.0.1',
version='0.1.0',
command_manager=cmd_mgr
).run(argv)
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = python-gerritclient
version = 0.0.1
version = 0.1.0
summary = CLI tool and Python API wrapper for Gerrit Code Review.
author = Vitalii Kulanov.
author-email = [email protected]
Expand Down

0 comments on commit ab98fca

Please sign in to comment.