diff --git a/CHANGELOG.md b/CHANGELOG.md index 1601389c..f852745d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # splat Release Notes +### 0.19.4 + +* Fix `ld_fill_value` not accepting `null` as a valid value on the yaml + ### 0.19.3 * New yaml option: `ld_bss_is_noload` diff --git a/split.py b/split.py index ab2e9ae1..c982d5eb 100755 --- a/split.py +++ b/split.py @@ -24,7 +24,7 @@ from segtypes.segment import Segment from util import log, options, palettes, symbols, relocs -VERSION = "0.19.3" +VERSION = "0.19.4" parser = argparse.ArgumentParser( description="Split a rom given a rom, a config, and output directory"