Skip to content

Commit 5b1d45c

Browse files
authored
Merge pull request #61 from nexB/release/0.6.5
Prepare for release v0.6.5
2 parents 3188b73 + d4e4ed0 commit 5b1d45c

9 files changed

+13
-8
lines changed

CHANGELOG.rst

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changelog
22
=========
33

4+
v0.6.5
5+
------
6+
7+
- Add --version option.
8+
49
v0.6.4
510
------
611

src/python_inspector/resolve_cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
TRACE = False
3333

34-
__version__ = "0.6.4"
34+
__version__ = "0.6.5"
3535

3636
DEFAULT_PYTHON_VERSION = "38"
3737
PYPI_SIMPLE_URL = "https://pypi.org/simple"

tests/data/default-url-expected.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"headers": {
33
"tool_name": "python-inspector",
44
"tool_homepageurl": "https://github.com/nexB/python-inspector",
5-
"tool_version": "0.6.4",
5+
"tool_version": "0.6.5",
66
"options": [
77
"--specifier zipp==3.8.0",
88
"--index-url https://pypi.org/simple",

tests/data/pinned-requirements.txt-expected.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"headers": {
33
"tool_name": "python-inspector",
44
"tool_homepageurl": "https://github.com/nexB/python-inspector",
5-
"tool_version": "0.6.4",
5+
"tool_version": "0.6.5",
66
"options": [
77
"--index-url https://pypi.org/simple",
88
"--python-version 38",

tests/data/setup/simple-setup.py-expected.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"headers": {
33
"tool_name": "python-inspector",
44
"tool_homepageurl": "https://github.com/nexB/python-inspector",
5-
"tool_version": "0.6.4",
5+
"tool_version": "0.6.5",
66
"options": [
77
"--index-url https://pypi.org/simple",
88
"--python-version 27",

tests/data/single-url-except-simple-expected.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"headers": {
33
"tool_name": "python-inspector",
44
"tool_homepageurl": "https://github.com/nexB/python-inspector",
5-
"tool_version": "0.6.4",
5+
"tool_version": "0.6.5",
66
"options": [
77
"--specifier flask",
88
"--index-url https://pypi.org/simple",

tests/data/single-url-expected.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"headers": {
33
"tool_name": "python-inspector",
44
"tool_homepageurl": "https://github.com/nexB/python-inspector",
5-
"tool_version": "0.6.4",
5+
"tool_version": "0.6.5",
66
"options": [
77
"--specifier zipp==3.8.0",
88
"--index-url https://pypi.org/simple",

tests/data/tilde_req-expected.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"headers": {
33
"tool_name": "python-inspector",
44
"tool_homepageurl": "https://github.com/nexB/python-inspector",
5-
"tool_version": "0.6.4",
5+
"tool_version": "0.6.5",
66
"options": [
77
"--specifier zipp~=3.8.0",
88
"--index-url https://pypi.org/simple",

tests/test_cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ def test_passing_of_json_pdt_and_json_flags():
265265
def test_version_option():
266266
options = ["--version"]
267267
result = run_cli(options=options)
268-
assert "0.6.4" in result.output
268+
assert "0.6.5" in result.output
269269

270270

271271
def test_passing_of_netrc_file_that_does_not_exist():

0 commit comments

Comments
 (0)