Skip to content

Commit

Permalink
v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aitorres committed Dec 12, 2021
1 parent a687b20 commit 11132e3
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion oneup/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
`oneup` is a CLI tool to check for dependency updates for Python.
"""

__version__ = '0.1.0'
__version__ = '0.1.1'
1 change: 0 additions & 1 deletion oneup/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ def scan_file(requirements_file_path: Path) -> None:
list(poetry_specs["dependencies"].keys())
)


for dependency in dependencies:
print_project_latest_version(dependency)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "oneup"
version = "0.1.0"
version = "0.1.1"
description = "A CLI tool to check for dependency updates for Python, in Python"
authors = ["Andrés Ignacio Torres <dev@aitorres.com>"]
license = "AGPL-3.0-only"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_oneup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == '0.1.0'
assert __version__ == '0.1.1'

0 comments on commit 11132e3

Please sign in to comment.