File tree 4 files changed +11
-3
lines changed
documentation/reference/licensecheck
4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 3
3
All major and minor version changes will be documented in this file. Details of
4
4
patch-level version changes can be found in [ commit messages] ( ../../commits/master ) .
5
5
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
+
6
14
## 2022.3.0 - 2022/12/30
7
15
8
16
- 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
14
14
15
15
[ Show source in get_deps.py:90] ( ../../../licensecheck/get_deps.py#L90 )
16
16
17
- Get a set of dependencies with licenses and determin license compatibility.
17
+ Get a set of dependencies with licenses and determine license compatibility.
18
18
19
19
#### Arguments
20
20
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ def getDepsWithLicenses(
94
94
ignoreLicenses : list [str ],
95
95
failLicenses : list [str ],
96
96
) -> 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.
98
98
99
99
Args:
100
100
using (str): use requirements or poetry
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " licensecheck"
3
- version = " 2022.3.1 "
3
+ version = " 2022.3.2 "
4
4
license = " mit"
5
5
description = " Output the licenses used by dependencies and check if these are compatible with the project license"
6
6
authors = [" FredHappyface" ]
You can’t perform that action at this time.
0 commit comments