diff --git a/over/app.py b/over/app.py index 7f0cd8c..16381c3 100644 --- a/over/app.py +++ b/over/app.py @@ -383,7 +383,7 @@ class ConfigFile: class Main: default_features = { - "config_file": (False, "Maintains and uses a config file in the XDG config directory (usually ~/config/appname)."), + "config_file": (False, "Maintains and uses a config file in the XDG config directory (usually ~/.config/appname)."), "auto_add_help": (True, "Generates the program's help and state view."), "handle_exceptions": (True, "Displays human-readable stack traces when unhandled exceptions are raised.") } diff --git a/over/version.py b/over/version.py index b2f1dee..dc1a44e 100644 --- a/over/version.py +++ b/over/version.py @@ -4,5 +4,5 @@ major = 1 # VERSION_MAJOR_IDENTIFIER minor = 99 # VERSION_MINOR_IDENTIFIER # VERSION_LAST_MM 1.99 -patch = 5 # VERSION_PATCH_IDENTIFIER +patch = 6 # VERSION_PATCH_IDENTIFIER str = ".".join(str(v) for v in (major, minor, patch))