Skip to content

Commit 0d58138

Browse files
committed
rel 2023.5.2
1 parent d18d4f7 commit 0d58138

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All major and minor version changes will be documented in this file. Details of
44
patch-level version changes can be found in [commit messages](../../commits/master).
55

6+
## 2023.5.2 - 2023/12/01
7+
8+
- fix: crash when a namespace doesn't exist https://github.com/FHPythonUtils/LicenseCheck/issues/65
9+
- fix: add support for double quotes in extras https://github.com/FHPythonUtils/LicenseCheck/pull/64,
10+
thanks https://github.com/arunkumarpandian
11+
612
## 2023.5.1 - 2023/09/21
713

814
- Fix optional extras from dependencies being included by default. Thank you https://github.com/arunkumarpandian!

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "licensecheck"
3-
version = "2023.5.1"
3+
version = "2023.5.2"
44
license = "mit"
55
description = "Output the licenses used by dependencies and check if these are compatible with the project license"
66
authors = ["FredHappyface"]
@@ -29,7 +29,7 @@ licensecheck = 'licensecheck:cli'
2929
[tool.poetry.dependencies]
3030
python = "^3.8"
3131
requests = "<3,>=2.31.0"
32-
fhconfparser = "<2024,>=2022"
32+
fhconfparser = "<2025,>=2023"
3333
tomli = "<3,>=2.0.1"
3434
rich = "<14,>=13.5.2"
3535
requests-cache = "<2,>=1.1.0"

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
fhconfparser<2024,>=2022
1+
fhconfparser<2025,>=2023
22
packaging<24,>=23.1
33
requests-cache<2,>=1.1.0
44
requests<3,>=2.31.0

0 commit comments

Comments
 (0)