Skip to content

Commit

Permalink
Bump version: 0.3.0 → 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tomwojcik committed Oct 17, 2020
1 parent 2dc40f9 commit e7ac2e5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = "Tomasz Wojcik"

# The full version, including alpha/beta/rc tags
VERSION = "0.3.0"
VERSION = "0.3.1"
release = VERSION

# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.0
current_version = 0.3.1
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion starlette_context/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from contextvars import ContextVar
from typing import Any, Dict

__version__ = "0.3.0"
__version__ = "0.3.1"
__author__ = "Tomasz Wojcik"

_request_scope_context_storage: ContextVar[Dict[Any, Any]] = ContextVar(
Expand Down

0 comments on commit e7ac2e5

Please sign in to comment.