File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ ## Unreleased
8+
9+ ## [ 0.2.3] - 2023-01-26
10+
11+ ### Changed
12+ - The value of local variables is now not printed when error occurs.
13+ ([ #24 ] ( https://github.com/pyodide/pyodide-cli/pull/24 ) )
14+
715## [ 0.2.2] - 2022-12-22
816### Changed
917 - ` pyodide --help ` will now group subcommands by their package name.
Original file line number Diff line number Diff line change 88
99from . import __version__
1010
11- app = typer .Typer (add_completion = False , rich_markup_mode = "markdown" )
11+ app = typer .Typer (
12+ add_completion = False ,
13+ rich_markup_mode = "markdown" ,
14+ pretty_exceptions_show_locals = False ,
15+ )
1216
1317
1418def version_callback (value : bool ):
You can’t perform that action at this time.
0 commit comments