From 66084937e7676dc057ffecdfa003a148c088c215 Mon Sep 17 00:00:00 2001 From: Andrew Date: Tue, 21 May 2024 00:29:39 -0500 Subject: [PATCH] chore(main): release 1.4.1 --- CHANGELOG.md | 12 ++++++++++++ pydantic_aioredis/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f25de08..033fbb25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [1.4.1](https://github.com/andrewthetechie/pydantic-aioredis/compare/v1.4.0...v1.4.1) (2024-05-21) + + +### Dependencies + +* 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 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)) + ## [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"