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
99### Added
1010- Upcoming changes...
1111
12+ ## [ 1.20.3] - 2025-03-03
13+ ### Fixed
14+ - Fixed cli.py typo
15+
1216## [ 1.20.2] - 2025-02-26
1317### Fixed
1418- Fixed provenance command
@@ -466,4 +470,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
466470[ 1.19.5 ] : https://github.com/scanoss/scanoss.py/compare/v1.19.4...v1.19.5
467471[ 1.20.0 ] : https://github.com/scanoss/scanoss.py/compare/v1.19.5...v1.20.0
468472[ 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 2222 THE SOFTWARE.
2323"""
2424
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
595595 args = parser .parse_args ()
596596 if args .version :
597597 ver (parser , args )
598- sys .sys . exit (0 )
598+ sys .exit (0 )
599599 if not args .subparser :
600600 parser .print_help () # No sub command subcommand, print general help
601601 sys .exit (1 )
@@ -1064,7 +1064,7 @@ def inspect_copyleft(parser, args):
10641064 explicit = args .explicit ,
10651065 )
10661066 status , _ = i_copyleft .run ()
1067- sys .sys . exit (status )
1067+ sys .exit (status )
10681068
10691069
10701070def inspect_undeclared (parser , args ):
@@ -1101,7 +1101,7 @@ def inspect_undeclared(parser, args):
11011101 sbom_format = args .sbom_format ,
11021102 )
11031103 status , _ = i_undeclared .run ()
1104- sys .sys . exit (status )
1104+ sys .exit (status )
11051105
11061106
11071107def utils_certloc (* _ ):
You can’t perform that action at this time.
0 commit comments