Skip to content

Commit 7e19ea6

Browse files
Bump version to release v0.14.4 (#249)
Signed-off-by: Ayan Sinha Mahapatra <ayansmahapatra@gmail.com>
1 parent 577ed4d commit 7e19ea6

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changelog
22
=========
33

4+
v0.14.4
5+
-----------
6+
7+
- Cleanup requirement string to avoid packvers parsing issues https://github.com/aboutcode-org/python-inspector/pull/244
8+
- Fix resolution issues for pre-release versions https://github.com/aboutcode-org/python-inspector/pull/248
49

510
v0.14.3
611
-----------

src/python_inspector/resolve_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
TRACE = False
2323

24-
__version__ = "0.14.3"
24+
__version__ = "0.14.4"
2525

2626
DEFAULT_PYTHON_VERSION = settings.DEFAULT_PYTHON_VERSION
2727
PYPI_SIMPLE_URL = settings.PYPI_SIMPLE_URL

tests/test_cli.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
from commoncode.testcase import FileDrivenTesting
2121

2222
from python_inspector.resolve_cli import resolve_dependencies
23+
from python_inspector.resolve_cli import __version__
2324

2425
# Used for tests to regenerate fixtures with regen=True
2526
REGEN_TEST_FIXTURES = os.getenv("PYINSP_REGEN_TEST_FIXTURES", False)
@@ -544,7 +545,7 @@ def test_passing_of_json_pdt_and_json_flags():
544545
def test_version_option():
545546
options = ["--version"]
546547
rc, stdout, stderr = run_cli(options=options)
547-
assert "0.14.3" in stdout
548+
assert __version__ in stdout
548549

549550

550551
def test_passing_of_netrc_file_that_does_not_exist():

0 commit comments

Comments
 (0)