Skip to content

Commit

Permalink
Bump version: 0.5.1 → 0.5.2
Browse files Browse the repository at this point in the history
- Loguru 0.5.3 → 0.6.0: Patches a security vulnerability as referenced
                        in https://nvd.nist.gov/vuln/detail/CVE-2022-0329
  • Loading branch information
arzkar committed Jan 29, 2022
1 parent 121fa22 commit 1671a6f
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 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.5.1
current_version = 0.5.2
commit = True
tag = False
parse = ^
Expand Down
2 changes: 1 addition & 1 deletion fichub_cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def default(
fic.get_urls_from_page(get_urls)

if version:
typer.echo("fichub-cli: v0.5.1")
typer.echo("fichub-cli: v0.5.2")

if supported_sites:
typer.echo(Fore.GREEN + """
Expand Down
2 changes: 1 addition & 1 deletion fichub_cli/utils/fichub.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from loguru import logger

headers = {
'User-Agent': 'fichub_cli/0.5.1',
'User-Agent': 'fichub_cli/0.5.2',
}

retry_strategy = Retry(
Expand Down
2 changes: 1 addition & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ beautifulsoup4==4.10.0
click==8.0.3
click-plugins==1.1.1
colorama==0.4.4
loguru==0.5.3
loguru==0.6.0
requests==2.27.1
rich==11.0.0
tqdm==4.60.0
Expand Down
2 changes: 1 addition & 1 deletion requirements_prod.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ click==8.0.3
click-plugins==1.1.1
rich==11.0.0
colorama==0.4.4
loguru==0.5.3
loguru==0.6.0
requests==2.27.1
tqdm==4.60.0
typer==0.4.0
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[metadata]
license-file = LICENSE.txt
description-file = README.md
license_file = LICENSE.txt
description_file = README.md
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
description="A CLI for the fichub.net API",
long_description=long_description,
long_description_content_type="text/markdown",
version='0.5.1',
version='0.5.2',
license='MIT',
url="https://github.com/FicHub/fichub-cli",
packages=find_packages(include=['fichub_cli', 'fichub_cli.*']),
Expand All @@ -19,7 +19,7 @@
'typer>=0.4.0',
'rich>=10.3.0',
'requests>=2.25.1',
'loguru>=0.5.3',
'loguru>=0.6.0',
'tqdm>=4.60.0',
'BeautifulSoup4>=4.9.3',
'colorama>=0.4.4'
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() == 'fichub-cli: v0.5.1'
assert result.output.strip() == 'fichub-cli: v0.5.2'

0 comments on commit 1671a6f

Please sign in to comment.