diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f061a58..f75a52f 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.1 +current_version = 0.3.2 commit = True tag = False diff --git a/fichub_cli/cli.py b/fichub_cli/cli.py index 13f542a..c4bb11d 100644 --- a/fichub_cli/cli.py +++ b/fichub_cli/cli.py @@ -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(""" diff --git a/fichub_cli/fichub.py b/fichub_cli/fichub.py index f380179..6c222f9 100644 --- a/fichub_cli/fichub.py +++ b/fichub_cli/fichub.py @@ -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} @@ -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 = {} diff --git a/setup.py b/setup.py index dbefc7e..b610067 100644 --- a/setup.py +++ b/setup.py @@ -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'], diff --git a/tests/test_cli.py b/tests/test_cli.py index 1d975b8..3d742e3 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -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'