File tree Expand file tree Collapse file tree 3 files changed +20
-8
lines changed Expand file tree Collapse file tree 3 files changed +20
-8
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
-
5
- v0.1.0
4
+ v0.1.2
6
5
------
7
6
8
- Initial release with support for:
7
+ Bugfix release to fix click compatibility issues:
8
+
9
+ * Update commoncode to latest v32.3.0 with click compatibility fixes
9
10
10
- * Get parsed list of demangled and cleaned symbols from a winpe binary
11
- * Get parsed list of demangled and cleaned symbols from a macho binary
12
- * scancode-toolkit plugins for collecting symbols from macho and winpe binaries
13
- with the CLI option --winpe-symbol --macho-symbol
14
11
15
12
v0.1.1
16
13
------
@@ -19,3 +16,14 @@ Bugfix release as the intial release had empty wheels:
19
16
20
17
* Fix binary-inspector wheels to have the necessary modules.
21
18
* Update to latest skeleton
19
+
20
+
21
+ v0.1.0
22
+ ------
23
+
24
+ Initial release with support for:
25
+
26
+ * Get parsed list of demangled and cleaned symbols from a winpe binary
27
+ * Get parsed list of demangled and cleaned symbols from a macho binary
28
+ * scancode-toolkit plugins for collecting symbols from macho and winpe binaries
29
+ with the CLI option --winpe-symbol --macho-symbol
Original file line number Diff line number Diff line change 2
2
# https://github.com/owasp-dep-scan/blint/blob/1e1250a4bf6c25eccba8970bd877901ee56070c7/poetry.lock
3
3
lief == 0.15.1
4
4
symbolic == 10.2.1
5
+ click == 8.2.1 ;python_version >= '3.10'
6
+ click == 8.1.8 ;python_version < '3.10'
7
+ commoncode == 32.3.0
Original file line number Diff line number Diff line change @@ -42,7 +42,8 @@ setup_requires = setuptools_scm[toml] >= 4
42
42
python_requires = >=3.9
43
43
44
44
install_requires =
45
- click<8.2
45
+ click >= 6.7, !=7.0; python_version<'3.10'
46
+ click >= 8.2.0; python_version>='3.10'
46
47
commoncode
47
48
plugincode
48
49
typecode
You can’t perform that action at this time.
0 commit comments