Skip to content

Commit

Permalink
v1.1.2 Release
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Pedersen <[email protected]>
  • Loading branch information
CTXz committed Jul 26, 2024
1 parent edc4e75 commit 036ce7f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "stm8dce"
version = "1.1.1"
version = "1.1.2"
authors = [
{ name="Patrick Pedersen", email="[email protected]" },
]
Expand Down
6 changes: 3 additions & 3 deletions src/stm8dce/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def run(

entry_function = entry_function[0]

# Keep main function and all of its traversed calls
# Keep entry function and all of its traversed functions
debug.pdbg()
debug.pdbg(f"Traversing entry function: {entry_label}")
debug.pseperator()
Expand Down Expand Up @@ -248,7 +248,7 @@ def run(
else:
raise ValueError(f"Error: Entry label not found: {entry_label}")

# Keep interrupt handlers and all of their traversed calls
# Keep interrupt handlers and all of their traversed functions
# but exclude unused IRQ handlers if opted by the user
interrupt_handlers = asm_analysis.interrupt_handlers(functions)
for handler in interrupt_handlers:
Expand Down Expand Up @@ -277,7 +277,7 @@ def run(
functions, function_pointer
)

# Keep functions excluded by the user and all of their traversed calls
# Keep functions excluded by the user and all of their traversed functions
if exclude_functions:
for exclude_name in exclude_functions:
filename, name = eval_flabel(exclude_name)
Expand Down

0 comments on commit 036ce7f

Please sign in to comment.