File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
### Added
10
10
- Upcoming changes...
11
11
12
+ ## [ 1.20.3] - 2025-03-03
13
+ ### Fixed
14
+ - Fixed cli.py typo
15
+
12
16
## [ 1.20.2] - 2025-02-26
13
17
### Fixed
14
18
- Fixed provenance command
@@ -466,4 +470,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
466
470
[ 1.19.5 ] : https://github.com/scanoss/scanoss.py/compare/v1.19.4...v1.19.5
467
471
[ 1.20.0 ] : https://github.com/scanoss/scanoss.py/compare/v1.19.5...v1.20.0
468
472
[ 1.20.1 ] : https://github.com/scanoss/scanoss.py/compare/v1.20.0...v1.20.1
469
- [ 1.20.2 ] : https://github.com/scanoss/scanoss.py/compare/v1.20.1...v1.20.2
473
+ [ 1.20.2 ] : https://github.com/scanoss/scanoss.py/compare/v1.20.1...v1.20.2
474
+ [ 1.20.3 ] : https://github.com/scanoss/scanoss.py/compare/v1.20.2...v1.20.3
Original file line number Diff line number Diff line change 22
22
THE SOFTWARE.
23
23
"""
24
24
25
- __version__ = '1.20.2 '
25
+ __version__ = '1.20.3 '
Original file line number Diff line number Diff line change @@ -595,7 +595,7 @@ def setup_args() -> None: # noqa: PLR0915
595
595
args = parser .parse_args ()
596
596
if args .version :
597
597
ver (parser , args )
598
- sys .sys . exit (0 )
598
+ sys .exit (0 )
599
599
if not args .subparser :
600
600
parser .print_help () # No sub command subcommand, print general help
601
601
sys .exit (1 )
@@ -1064,7 +1064,7 @@ def inspect_copyleft(parser, args):
1064
1064
explicit = args .explicit ,
1065
1065
)
1066
1066
status , _ = i_copyleft .run ()
1067
- sys .sys . exit (status )
1067
+ sys .exit (status )
1068
1068
1069
1069
1070
1070
def inspect_undeclared (parser , args ):
@@ -1101,7 +1101,7 @@ def inspect_undeclared(parser, args):
1101
1101
sbom_format = args .sbom_format ,
1102
1102
)
1103
1103
status , _ = i_undeclared .run ()
1104
- sys .sys . exit (status )
1104
+ sys .exit (status )
1105
1105
1106
1106
1107
1107
def utils_certloc (* _ ):
You can’t perform that action at this time.
0 commit comments