From 818e47486d9c6c719270905767843250b51cfd5b Mon Sep 17 00:00:00 2001 From: Andrew Date: Tue, 28 May 2024 14:23:39 -0500 Subject: [PATCH] chore(main): release 1.4.1 --- CHANGELOG.md | 17 +++++++++++++++++ pydantic_aioredis/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f25de08..366a35ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [1.4.1](https://github.com/andrewthetechie/pydantic-aioredis/compare/v1.4.0...v1.4.1) (2024-05-28) + + +### Dependencies + +* bump anyio from 4.3.0 to 4.4.0 ([2ab0c32](https://github.com/andrewthetechie/pydantic-aioredis/commit/2ab0c3299a2e1114297a3c643e8b04f9e998658c)) +* bump coverage from 7.5.1 to 7.5.2 ([e1b01a8](https://github.com/andrewthetechie/pydantic-aioredis/commit/e1b01a8b4fce969285d5fa6d9a3b3f94a085dd5b)) +* bump coverage from 7.5.2 to 7.5.3 ([30c603e](https://github.com/andrewthetechie/pydantic-aioredis/commit/30c603e481c1dd3e63f1cc14c4093c607a1e4063)) +* bump fakeredis from 2.23.0 to 2.23.1 ([a2ee175](https://github.com/andrewthetechie/pydantic-aioredis/commit/a2ee175504d576efefaff70e89e5a7e033c21bdf)) +* bump hypothesis from 6.100.5 to 6.100.6 ([9d2459e](https://github.com/andrewthetechie/pydantic-aioredis/commit/9d2459e1ea5ece392469a4e4c87a7ef597209430)) +* bump hypothesis from 6.100.6 to 6.102.1 ([3ba6284](https://github.com/andrewthetechie/pydantic-aioredis/commit/3ba6284f26e24834598d5175a6db7e8131d6b92d)) +* bump hypothesis from 6.102.1 to 6.102.4 ([0e6ebe0](https://github.com/andrewthetechie/pydantic-aioredis/commit/0e6ebe00f2089e20af52e42346aefc9be686d64d)) +* bump hypothesis from 6.102.4 to 6.102.6 ([040ac0d](https://github.com/andrewthetechie/pydantic-aioredis/commit/040ac0dd9aeca94d55f9c121ae1e4c3e9ca18daf)) +* bump pep8-naming from 0.13.3 to 0.14.1 ([b2ae1d3](https://github.com/andrewthetechie/pydantic-aioredis/commit/b2ae1d389ee9c496bad156d55d94805ad3021991)) +* bump ruff from 0.4.3 to 0.4.4 ([1578bb5](https://github.com/andrewthetechie/pydantic-aioredis/commit/1578bb5cb383d3338aaf3ece7546ac60f54cac45)) +* bump ruff from 0.4.4 to 0.4.5 ([#888](https://github.com/andrewthetechie/pydantic-aioredis/issues/888)) ([a329cec](https://github.com/andrewthetechie/pydantic-aioredis/commit/a329cecab10e9d7b7c87e6041f32e4c0d1c86b53)) + ## [1.4.0](https://github.com/andrewthetechie/pydantic-aioredis/compare/v1.3.1...v1.4.0) (2024-05-08) diff --git a/pydantic_aioredis/__init__.py b/pydantic_aioredis/__init__.py index eea74eed..12e837ab 100644 --- a/pydantic_aioredis/__init__.py +++ b/pydantic_aioredis/__init__.py @@ -1,7 +1,7 @@ """Entry point for pydantic-aioredis""" # set by poetry-dynamic-versioning -__version__ = "1.4.0" # noqa: E402 +__version__ = "1.4.1" # noqa: E402 from .config import RedisConfig # noqa: F401 from .model import Model # noqa: F401 diff --git a/pyproject.toml b/pyproject.toml index bc648a12..2c0f2d6d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pydantic-aioredis" -version = "1.4.0" +version = "1.4.1" description = "Use your pydantic models as an ORM, storing data in Redis." authors = ["Andrew Herrington "] license = "MIT"