Skip to content

Commit

Permalink
Merge pull request #55 from damnever/bump
Browse files Browse the repository at this point in the history
Bump version: 0.9.2
  • Loading branch information
damnever committed Apr 11, 2019
2 parents 82845f2 + 85ab650 commit f98b26a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.rst
Expand Up @@ -68,6 +68,7 @@ Usage

usage: pigar [-h] [-v] [-u] [-s NAME [NAME ...]] [-c [PATH]] [-l LOG_LEVEL]
[-i DIR [DIR ...]] [-p SAVE_PATH] [-P PROJECT_PATH]
[-o COMPARISON_OPERATOR]

Python requirements tool -- pigar, it will do only one thing at each time.
Default action is generate requirements.txt in current directory.
Expand All @@ -92,6 +93,9 @@ Usage
action
-P PROJECT_PATH project path, which is directory, *used for* default
action
-o COMPARISON_OPERATOR
The comparison operator for versions, alternatives:
[==, ~=, >=]


More
Expand Down
2 changes: 1 addition & 1 deletion pigar/_version.py
Expand Up @@ -2,5 +2,5 @@

from __future__ import print_function, division, absolute_import

version = __version__ = '0.9.1'
version = __version__ = '0.9.2'
version_info = [int(num) for num in version.split('.')]
2 changes: 1 addition & 1 deletion pigar/cmd.py
Expand Up @@ -77,7 +77,7 @@ def parse_args(args=None):
default=[os.getcwd()],
help='project path, which is directory, *used for* default action')
parser.add_argument(
'-o', '--comparison-operator',
'-o', # '--comparison-operator',
dest='comparison_operator',
nargs=1,
type=comparison_operator_check,
Expand Down

0 comments on commit f98b26a

Please sign in to comment.