diff --git a/over/app.py b/over/app.py index 65fab46..6c360f0 100644 --- a/over/app.py +++ b/over/app.py @@ -542,7 +542,7 @@ class Main: # App name and version print("[Application<.>]") - print(" %s<.>-%s<.> licensed under the %s<.>" %(self.name, self.version, self.license)) + print(" %s<.>-%s<.> licensed under %s<.>" %(self.name, self.version, self.license)) print(" using over-%s" %(version.str)) # Main features diff --git a/over/version.py b/over/version.py index e1d009c..ea54197 100644 --- a/over/version.py +++ b/over/version.py @@ -4,5 +4,5 @@ major = 2 # VERSION_MAJOR_IDENTIFIER minor = 0 # VERSION_MINOR_IDENTIFIER # VERSION_LAST_MM 2.0 -patch = 1 # VERSION_PATCH_IDENTIFIER -str = "2.0.1" # VERSION_STRING_IDENTIFIER +patch = 9 # VERSION_PATCH_IDENTIFIER +str = "2.0.9" # VERSION_STRING_IDENTIFIER