File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
## [ Unreleased]
9
9
### Added
10
10
- Upcoming changes...
11
+
12
+ ## [ 1.17.5] - 2024-11-12
13
+ ### Fixed
14
+ - Fix dependencies scan result structure
11
15
12
16
## [ 1.17.4] - 2024-11-08
13
17
### Fixed
@@ -388,4 +392,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
388
392
[ 1.17.0 ] : https://github.com/scanoss/scanoss.py/compare/v1.16.0...v1.17.0
389
393
[ 1.17.1 ] : https://github.com/scanoss/scanoss.py/compare/v1.17.0...v1.17.1
390
394
[ 1.17.2 ] : https://github.com/scanoss/scanoss.py/compare/v1.17.1...v1.17.2
391
- [ 1.17.3 ] : https://github.com/scanoss/scanoss.py/compare/v1.17.2...v1.17.3
395
+ [ 1.17.3 ] : https://github.com/scanoss/scanoss.py/compare/v1.17.2...v1.17.3
396
+ [ 1.17.4 ] : https://github.com/scanoss/scanoss.py/compare/v1.17.3...v1.17.4
397
+ [ 1.17.5 ] : https://github.com/scanoss/scanoss.py/compare/v1.17.4...v1.17.5
Original file line number Diff line number Diff line change 22
22
THE SOFTWARE.
23
23
"""
24
24
25
- __version__ = " 1.17.4"
25
+ __version__ = ' 1.17.5'
Original file line number Diff line number Diff line change @@ -564,7 +564,7 @@ def _merge_scan_results(
564
564
for dep_file in dep_files :
565
565
file = dep_file .pop ("file" , None )
566
566
if file :
567
- results [file ] = dep_file
567
+ results [file ] = [ dep_file ]
568
568
569
569
return results
570
570
You can’t perform that action at this time.
0 commit comments