Skip to content

Commit 4a91a4d

Browse files
authored
Merge pull request #236 from aboutcode-org/release-prep-0143
Prepare Release 0.14.3
2 parents 5910dcd + 1b7a4b7 commit 4a91a4d

File tree

4 files changed

+21
-325
lines changed

4 files changed

+21
-325
lines changed

CHANGELOG.rst

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

4+
5+
v0.14.3
6+
-----------
7+
8+
- Update version number displayed in CLI, forgotten from previous releases.
9+
10+
11+
v0.14.2
12+
-----------
13+
14+
- Respect the HTTP_PROXY environment variable.
15+
16+
17+
v0.14.1
18+
-----------
19+
20+
- Improve netrc support with aiohttp. Also fix related bugs.
21+
22+
423
v0.14.0
524
-----------
625

src/python_inspector/resolve_cli.py

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

2121
TRACE = False
2222

23-
__version__ = "0.14.0"
23+
__version__ = "0.14.3"
2424

2525
DEFAULT_PYTHON_VERSION = settings.DEFAULT_PYTHON_VERSION
2626
PYPI_SIMPLE_URL = settings.PYPI_SIMPLE_URL

test_resolution2.py.foo

Lines changed: 0 additions & 323 deletions
This file was deleted.

tests/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ def test_passing_of_json_pdt_and_json_flags():
533533
def test_version_option():
534534
options = ["--version"]
535535
rc, stdout, stderr = run_cli(options=options)
536-
assert "0.14.0" in stdout
536+
assert "0.14.3" in stdout
537537

538538

539539
def test_passing_of_netrc_file_that_does_not_exist():

0 commit comments

Comments
 (0)