Skip to content

Commit ab98fca

Browse files
committed
Bump version to 0.1.0
1 parent 62a7f02 commit ab98fca

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

ChangeLog

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
CHANGES
22
=======
33

4+
* Bump version to 0.1.0
45
* Fix test runner config issues with os-testr 1.0.0
56
* Update .gitignore
67
* Add pypi badge to README.md
@@ -28,7 +29,7 @@ CHANGES
2829
* Add option '-d/--draft' to 'gerrit change comment list' command
2930
* Add new 'gerrit change comment list' command
3031
* Check the response not empty before fetching columns
31-
* Replace special characters in {change\_id} using the %xx escape
32+
* Replace special characters in {change_id} using the %xx escape
3233
* Add new 'gerrit change index' command
3334
* Add new 'gerrit change included-in show' command
3435
* Add new 'gerrit change draft publish' command
@@ -89,7 +90,7 @@ CHANGES
8990
* Add new 'gerrit account password set' command
9091
* Add commands to enable/disable accounts
9192
* Add new 'gerrit account username set' command
92-
* Align 'test\_group\_set\_description' test case
93+
* Align 'test_group_set_description' test case
9394
* Add new 'gerrit account name set' command
9495
* Add 'gerrit account create' command
9596
* Add '-a/--all' optional argument to 'gerrit account show' command
@@ -101,7 +102,7 @@ CHANGES
101102
* Add 'gerrit group description delete' command
102103
* Make possible to encode project name
103104
* Code refactoring for PluginClient and ProjectClient
104-
* 'gerrit group \*' related command code refactoring
105+
* 'gerrit group *' related command code refactoring
105106
* Add 'gerrit group description set' command
106107
* Add 'gerrit group rename' command
107108
* Add 'gerrit project delete' command

gerritclient/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def run(self, argv):
3535
def main(argv=sys.argv[1:]):
3636
gerritclient_app = GerritClient(
3737
description='CLI tool for managing Gerrit Code Review.',
38-
version='0.0.1',
38+
version='0.1.0',
3939
command_manager=CommandManager('gerritclient',
4040
convert_underscores=True),
4141
deferred_help=True
@@ -56,6 +56,6 @@ def debug(name, cmd_class, argv=None):
5656
cmd_mgr.add_command(name, cmd_class)
5757
return GerritClient(
5858
description="CLI tool for managing Gerrit Code Review.",
59-
version='0.0.1',
59+
version='0.1.0',
6060
command_manager=cmd_mgr
6161
).run(argv)

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = python-gerritclient
3-
version = 0.0.1
3+
version = 0.1.0
44
summary = CLI tool and Python API wrapper for Gerrit Code Review.
55
author = Vitalii Kulanov.
66
author-email = vitaliy@kulanov.org.ua

0 commit comments

Comments
 (0)