Skip to content

Commit b7d1abe

Browse files
committed
SP-534 Removes '.whl' from filtered extensions
1 parent 15bcfce commit b7d1abe

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
### Added
1010
- Upcoming changes...
1111

12+
## [1.12.1] - 2024-04-12
13+
### Changed
14+
- Removed '.whl' file extension from filtered extensions
15+
1216
## [1.12.0] - 2024-03-26
1317
### Changed
1418
- Updated free default URL to now point to `https://api.osskb.org`
@@ -310,4 +314,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
310314
[1.10.0]: https://github.com/scanoss/scanoss.py/compare/v1.9.0...v1.10.0
311315
[1.11.0]: https://github.com/scanoss/scanoss.py/compare/v1.10.0...v1.11.0
312316
[1.11.1]: https://github.com/scanoss/scanoss.py/compare/v1.11.0...v1.11.1
313-
[1.11.1]: https://github.com/scanoss/scanoss.py/compare/v1.11.1...v1.12.0
317+
[1.12.0]: https://github.com/scanoss/scanoss.py/compare/v1.11.1...v1.12.0
318+
[1.12.1]: https://github.com/scanoss/scanoss.py/compare/v1.12.0...v1.12.1

src/scanoss/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
THE SOFTWARE.
2323
"""
2424

25-
__version__ = '1.12.0'
25+
__version__ = '1.12.1'

src/scanoss/scanner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
".po", ".ppt", ".prefs", ".properties", ".pyc", ".qdoc", ".result", ".rgb",
7272
".rst", ".scss", ".sha", ".sha1", ".sha2", ".sha256", ".sln", ".spec", ".sql",
7373
".sub", ".svg", ".svn-base", ".tab", ".template", ".test", ".tex", ".tiff",
74-
".toml", ".ttf", ".txt", ".utf-8", ".vim", ".wav", ".whl", ".woff", ".woff2", ".xht",
74+
".toml", ".ttf", ".txt", ".utf-8", ".vim", ".wav", ".woff", ".woff2", ".xht",
7575
".xhtml", ".xls", ".xlsx", ".xml", ".xpm", ".xsd", ".xul", ".yaml", ".yml", ".wfp",
7676
".editorconfig", ".dotcover", ".pid", ".lcov", ".egg", ".manifest", ".cache", ".coverage", ".cover",
7777
".gem", ".lst", ".pickle", ".pdb", ".gml", ".pot", ".plt",

src/scanoss/winnowing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
".o", ".a", ".so", ".obj", ".dll", ".lib", ".out", ".app", ".bin",
5959
".lst", ".dat", ".json", ".htm", ".html", ".xml", ".md", ".txt",
6060
".doc", ".docx", ".xls", ".xlsx", ".ppt", ".pptx", ".odt", ".ods", ".odp", ".pages", ".key", ".numbers",
61-
".pdf", ".min.js", ".mf", ".sum", ".woff", ".woff2", '.xsd', ".pom"
61+
".pdf", ".min.js", ".mf", ".sum", ".woff", ".woff2", '.xsd', ".pom", ".whl",
6262
}
6363

6464
CRC8_MAXIM_DOW_TABLE_SIZE = 0x100

0 commit comments

Comments
 (0)