Skip to content

Commit

Permalink
Bump version: 0.3.1 → 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
arzkar committed Apr 22, 2021
1 parent 3919240 commit bcf5888
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.1
current_version = 0.3.2
commit = True
tag = False

Expand Down
2 changes: 1 addition & 1 deletion fichub_cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def run_cli(infile, url, list_url, format, out_dir, debug, version, supported_si
url, format_type, out_dir, debug, force, automated)

if version:
click.echo("Version: 0.3.1")
click.echo("Version: 0.3.2")

if supported_sites:
click.echo("""
Expand Down
4 changes: 2 additions & 2 deletions fichub_cli/fichub.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def get_fic_metadata(url, format_type, debug,
pbar, exit_status=0, automated=False):

headers = {
'User-Agent': 'fichub_cli/0.3.1',
'User-Agent': 'fichub_cli/0.3.2',
}

params = {'q': url}
Expand Down Expand Up @@ -57,7 +57,7 @@ def get_fic_metadata(url, format_type, debug,
def get_fic_data(download_url, automated=False):

headers = {
'User-Agent': 'fichub_cli/0.3.1',
'User-Agent': 'fichub_cli/0.3.2',
}

params = {}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
description="A CLI tool for the fichub.net API",
long_description=long_description,
long_description_content_type="text/markdown",
version='0.3.1',
version='0.3.2',
license='MIT',
url="https://github.com/FicHub/fichub-cli",
packages=['fichub_cli'],
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ def test_cli_version():

assert not result.exception
assert result.exit_code == 0
assert result.output.strip() == 'Version: 0.3.1'
assert result.output.strip() == 'Version: 0.3.2'

0 comments on commit bcf5888

Please sign in to comment.