diff --git a/zenml/VERSION b/zenml/VERSION index 6c6aa7cb09..6da28dde76 100644 --- a/zenml/VERSION +++ b/zenml/VERSION @@ -1 +1 @@ -0.1.0 \ No newline at end of file +0.1.1 \ No newline at end of file diff --git a/zenml/utils/constants.py b/zenml/utils/constants.py index 965e9426a9..ba74820b41 100644 --- a/zenml/utils/constants.py +++ b/zenml/utils/constants.py @@ -38,7 +38,7 @@ def handle_bool_env_var(var, default=False): # Logging variables ENV_ZENML_LOGGING_VERBOSITY = 'ZENML_LOGGING_VERBOSITY' # TODO: [HIGH] Switch to default False before release -IS_DEBUG_ENV = handle_bool_env_var(ENV_ZENML_DEBUG, default=True) +IS_DEBUG_ENV = handle_bool_env_var(ENV_ZENML_DEBUG, default=False) if IS_DEBUG_ENV: ZENML_LOGGING_VERBOSITY = os.getenv(ENV_ZENML_LOGGING_VERBOSITY, 4) else: