File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed
Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 0.14.0] - 2025-12-03
9+
10+ ### Added
11+
12+ - Add ` ledger.app_flags ` section extraction from app.elf
13+
14+
815## [ 0.13.0] - 2025-11-24
916
1017### Fixed
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ class Sections(Jsonable):
2626 target_id : Optional [str ] = None
2727 target_name : Optional [str ] = None
2828 target_version : Optional [str ] = None
29+ app_flags : Optional [str ] = None
2930
3031 def __str__ (self ) -> str :
3132 return "\n " .join (f"{ key } { value } " for key , value in sorted (asdict (self ).items ()))
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ def setUp(self):
2323 "target_id" : "target_id" ,
2424 "target_name" : "target_name" ,
2525 "target_version" : "target_version" ,
26+ "app_flags" : "app_flags" ,
2627 }
2728
2829 def test___init__empty (self ):
@@ -40,6 +41,7 @@ def test___init__empty(self):
4041 self .assertIsNone (sections .target_id )
4142 self .assertIsNone (sections .target_name )
4243 self .assertIsNone (sections .target_version )
44+ self .assertIsNone (sections .app_flags )
4345
4446 def test___str__ (self ):
4547 sections = B .Sections (** self .inputs )
You can’t perform that action at this time.
0 commit comments