Skip to content

Commit 9bca8ae

Browse files
committed
release: 2022.3.2
1 parent 81c9bb0 commit 9bca8ae

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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+
## 2022.3.2 - 2022/12/30
7+
8+
- Fix: use constant `JOINS` (";; ") in place of hardcoded ", " string to avoid splitting single license with commas
9+
- Fix: Add `GPL_X` for GPL without a defined version
10+
- Minor refactoring eg renaming functions
11+
- Make namever consistent
12+
- Add regression tests
13+
614
## 2022.3.0 - 2022/12/30
715

816
- Combined `PackageCompat` and `PackageInfo` to a `@dataclass` of `PackageInfo`

documentation/reference/licensecheck/get_deps.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Get Deps
1414

1515
[Show source in get_deps.py:90](../../../licensecheck/get_deps.py#L90)
1616

17-
Get a set of dependencies with licenses and determin license compatibility.
17+
Get a set of dependencies with licenses and determine license compatibility.
1818

1919
#### Arguments
2020

licensecheck/get_deps.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def getDepsWithLicenses(
9494
ignoreLicenses: list[str],
9595
failLicenses: list[str],
9696
) -> set[PackageInfo]:
97-
"""Get a set of dependencies with licenses and determin license compatibility.
97+
"""Get a set of dependencies with licenses and determine license compatibility.
9898
9999
Args:
100100
using (str): use requirements or poetry

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "licensecheck"
3-
version = "2022.3.1"
3+
version = "2022.3.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"]

0 commit comments

Comments
 (0)