diff --git a/CHANGELOG.md b/CHANGELOG.md index 27297fd3..adf2d800 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] -## [0.4.1] - 2022-12-29 +## [0.4.2] - 2022-12-29 ### Added @@ -17,6 +17,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Fixed unexpected data error when selecting some columns for some records +## [0.4.1] - 2022-12-29 + +### Added + +### Changed + +### Fixed + ## [0.4.0] - 2022-12-17 ### Added diff --git a/pydantic_redis/__init__.py b/pydantic_redis/__init__.py index d0a6dbb6..8873263a 100644 --- a/pydantic_redis/__init__.py +++ b/pydantic_redis/__init__.py @@ -5,4 +5,4 @@ __all__ = [Store, RedisConfig, Model, asyncio] -__version__ = "0.4.1" +__version__ = "0.4.2" diff --git a/setup.py b/setup.py index 3d2d4e4d..75195730 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ # This call to setup() does all the work setup( name="pydantic-redis", - version="0.4.1", + version="0.4.2", description="This package provides a simple ORM for redis using pydantic-like models.", long_description=README, long_description_content_type="text/markdown",