From 23cd6eeed5cf1ce721dc594e2d196aebc0d2930e Mon Sep 17 00:00:00 2001 From: Martinez Date: Tue, 10 Oct 2017 10:35:04 +0200 Subject: [PATCH] fix typo --- over-hex.py | 2 +- version.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/over-hex.py b/over-hex.py index 627effd..d104c7a 100755 --- a/over-hex.py +++ b/over-hex.py @@ -24,7 +24,7 @@ class ConfigurationError(Exception): # -------------------------------------------------- if __name__ == "__main__": - main = over.app.Main("over-hex", version.str, "AO-JST", features={"config_file": True}) + main = over.app.Main("over-hex", version.str, "AO-JSL", features={"config_file": True}) main.add_option("color", "Use colors.", bool, [True], abbr="C") main.add_option("header", "Show a header (byte numbers).", bool, [True], abbr="H") main.add_option("offsets", "Show a column of offsets (line numbers).", bool, [True], abbr="O") diff --git a/version.py b/version.py index 284d193..8195ee8 100644 --- a/version.py +++ b/version.py @@ -4,5 +4,5 @@ major = 0 # VERSION_MAJOR_IDENTIFIER minor = 1 # VERSION_MINOR_IDENTIFIER # VERSION_LAST_MM 0.1 -patch = 1 # VERSION_PATCH_IDENTIFIER -str = "0.1.1" # VERSION_STRING_IDENTIFIER +patch = 2 # VERSION_PATCH_IDENTIFIER +str = "0.1.2" # VERSION_STRING_IDENTIFIER