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 11Changelog
22=========
33
4-
5- v0.1.0
4+ v0.1.2
65------
76
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
910
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
1411
1512v0.1.1
1613------
@@ -19,3 +16,14 @@ Bugfix release as the intial release had empty wheels:
1916
2017* Fix binary-inspector wheels to have the necessary modules.
2118* 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 22# https://github.com/owasp-dep-scan/blint/blob/1e1250a4bf6c25eccba8970bd877901ee56070c7/poetry.lock
33lief == 0.15.1
44symbolic == 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
4242python_requires = >=3.9
4343
4444install_requires =
45- click<8.2
45+ click >= 6.7, !=7.0; python_version<'3.10'
46+ click >= 8.2.0; python_version>='3.10'
4647 commoncode
4748 plugincode
4849 typecode
You can’t perform that action at this time.
0 commit comments