diff --git a/docs/source/conf.py b/docs/source/conf.py index a5b11d6..73ce5a4 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -23,7 +23,7 @@ author = "Tomasz Wojcik" # The full version, including alpha/beta/rc tags -VERSION = "0.3.4" +VERSION = "0.3.5" release = VERSION # -- General configuration --------------------------------------------------- diff --git a/setup.cfg b/setup.cfg index 4b6c0dd..f6a699b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.4 +current_version = 0.3.5 commit = True tag = True @@ -17,5 +17,5 @@ python-tag = py37 max-line-length = 79 exclude = .tox,.git,docs/* extend-ignore = E203, W503 -per-file-ignores = +per-file-ignores = */__init__.py:F401 diff --git a/starlette_context/__init__.py b/starlette_context/__init__.py index 5312f1d..cbbc073 100644 --- a/starlette_context/__init__.py +++ b/starlette_context/__init__.py @@ -2,7 +2,7 @@ from contextlib import contextmanager from typing import Any, Dict, Iterator, Optional -__version__ = "0.3.4" +__version__ = "0.3.5" __author__ = "Tomasz Wojcik" _request_scope_context_storage: ContextVar[Dict[Any, Any]] = ContextVar(