File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed
documentation/reference/licensecheck Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 33All major and minor version changes will be documented in this file. Details of
44patch-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 `
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " licensecheck"
3- version = " 2022.3.1 "
3+ version = " 2022.3.2 "
44license = " mit"
55description = " Output the licenses used by dependencies and check if these are compatible with the project license"
66authors = [" FredHappyface" ]
You can’t perform that action at this time.
0 commit comments