Skip to content

Commit

Permalink
Bump version: 1.0.0 → 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wiseaidev committed Dec 22, 2023
1 parent 8b2852b commit 5c1b698
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.0
current_version = 1.0.1
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<stage>[^.]*))?
Expand Down
2 changes: 1 addition & 1 deletion aioredis_fastapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

__author__ = """Mahmoud Harmouch"""
__email__ = "business@wiseai.dev"
__version__ = "1.0.0"
__version__ = "1.0.1"

from aioredis_fastapi.config import (
settings,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aioredis_fastapi"
version = "1.0.0"
version = "1.0.1"
description = "aioredis_fastapi is an asynchronous redis based session backend for FastAPI powered applications."
authors = [
"Mahmoud Harmouch <oss@wiseai.dev>"
Expand Down
2 changes: 1 addition & 1 deletion tests/tests_aioredis_fastapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@


def test_version():
assert __version__ == "1.0.0"
assert __version__ == "1.0.1"

0 comments on commit 5c1b698

Please sign in to comment.