From 21833b855d6553c3656caa62998a4ea992e10723 Mon Sep 17 00:00:00 2001 From: Davide Arcuri Date: Tue, 4 Jun 2024 13:17:47 +0200 Subject: [PATCH] fix __init__ --- compose/local/__init__.py | 16 ++++++++++------ version.py | 2 +- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/compose/local/__init__.py b/compose/local/__init__.py index fa92a296..bd93e7bd 100644 --- a/compose/local/__init__.py +++ b/compose/local/__init__.py @@ -44,8 +44,8 @@ # We use the SemVer 2.0.0 versioning scheme VERSION_MAJOR = 2 # Number of releases of the library with a breaking change -VERSION_MINOR = 5 # Number of changes that only add to the interface -VERSION_PATCH = 2 # Number of changes that do not change the interface +VERSION_MINOR = 7 # Number of changes that only add to the interface +VERSION_PATCH = 0 # Number of changes that do not change the interface VERSION_SUFFIX = "" # TODO: At version 2.0.0, remove the symbol_shift feature @@ -59,14 +59,18 @@ AUTOMAGIC_CONFIG_PATH = "automagic" """The root section within the context configuration for automagic values""" +LOGLEVEL_INFO = 20 +"""Logging level for information data, showed when use the requests any logging: -v""" +LOGLEVEL_DEBUG = 10 +"""Logging level for debugging data, showed when the user requests more logging detail: -vv""" LOGLEVEL_V = 9 -"""Logging level for a single -v""" +"""Logging level for the lowest "extra" level of logging: -vvv""" LOGLEVEL_VV = 8 -"""Logging level for -vv""" +"""Logging level for two levels of detail: -vvvv""" LOGLEVEL_VVV = 7 -"""Logging level for -vvv""" +"""Logging level for three levels of detail: -vvvvv""" LOGLEVEL_VVVV = 6 -"""Logging level for -vvvv""" +"""Logging level for four levels of detail: -vvvvvv""" CACHE_PATH = os.path.join(os.path.expanduser("~"), ".cache", "volatility3") """Default path to store cached data""" diff --git a/version.py b/version.py index 8a124bf6..ba51cedf 100644 --- a/version.py +++ b/version.py @@ -1 +1 @@ -__version__ = "2.2.0" +__version__ = "2.2.2"