diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f307f35..ef4cdd8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.2.2](https://github.com/andrewthetechie/pydantic-aioredis/compare/v1.2.1...v1.2.2) (2023-02-10) + + +### Documentation + +* fix read the docs ([#457](https://github.com/andrewthetechie/pydantic-aioredis/issues/457)) ([1bb8ff8](https://github.com/andrewthetechie/pydantic-aioredis/commit/1bb8ff8a7f63b0d742a798fc902db8b6fd499561)) + ## [1.2.1](https://github.com/andrewthetechie/pydantic-aioredis/compare/v1.2.0...v1.2.1) (2023-01-21) diff --git a/pydantic_aioredis/__init__.py b/pydantic_aioredis/__init__.py index 0d09f78c..b1d82da0 100644 --- a/pydantic_aioredis/__init__.py +++ b/pydantic_aioredis/__init__.py @@ -1,6 +1,6 @@ """Entry point for pydantic-aioredis""" # set by poetry-dynamic-versioning -__version__ = "1.2.1" # noqa: E402 +__version__ = "1.2.2" # noqa: E402 from .config import RedisConfig # noqa: F401 from .model import Model # noqa: F401 diff --git a/pyproject.toml b/pyproject.toml index 5aff4e91..68bcacb2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pydantic-aioredis" -version = "1.2.1" +version = "1.2.2" description = "Use your pydantic models as an ORM, storing data in Redis." authors = ["Andrew Herrington "] license = "MIT"