Skip to content
This repository was archived by the owner on Jun 21, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.3.1](https://github.com/andrewthetechie/pydantic-aioredis/compare/v1.3.0...v1.3.1) (2024-05-05)


### Dependencies

* bump anyio from 3.7.1 to 4.3.0 ([#855](https://github.com/andrewthetechie/pydantic-aioredis/issues/855)) ([9581b6e](https://github.com/andrewthetechie/pydantic-aioredis/commit/9581b6e5787d4a1218dc59447158010ba21d8d8e))

## [1.3.0](https://github.com/andrewthetechie/pydantic-aioredis/compare/v1.2.3...v1.3.0) (2024-05-05)


Expand Down
2 changes: 1 addition & 1 deletion pydantic_aioredis/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Entry point for pydantic-aioredis"""

# set by poetry-dynamic-versioning
__version__ = "1.3.0" # noqa: E402
__version__ = "1.3.1" # noqa: E402

from .config import RedisConfig # noqa: F401
from .model import Model # noqa: F401
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 = "pydantic-aioredis"
version = "1.3.0"
version = "1.3.1"
description = "Use your pydantic models as an ORM, storing data in Redis."
authors = ["Andrew Herrington <[email protected]>"]
license = "MIT"
Expand Down