diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c33c8321..d592a5a9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 1.5.66 +current_version = 1.5.67 message = Bump version: {current_version} → {new_version} [skip ci] [bumpversion:file:src/main.py] diff --git a/src/main.py b/src/main.py index 0f4b8226..aecbe6a6 100644 --- a/src/main.py +++ b/src/main.py @@ -25,7 +25,8 @@ structlog.configure( wrapper_class=structlog.make_filtering_bound_logger( - getattr(logging, os.getenv('LOGLEVEL','INFO'))), + getattr(logging, os.getenv("LOGLEVEL", "INFO")) + ), processors=[ structlog.processors.EventRenamer("message", replace_by="_event"), structlog.stdlib.PositionalArgumentsFormatter(), @@ -48,7 +49,7 @@ folder = os.path.dirname(os.path.abspath(__file__)) title = "Quartz Solar API" -version = "1.5.66" +version = "1.5.67" sentry_sdk.init( dsn=os.getenv("SENTRY_DSN"),