diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fdb5bec..4af650aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,15 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] -### Added +## [0.7.0] - 2024-07-20 -### Changed +### Added - Added support for dictionaries of nested models - Added support for deeply nested models beyond level-1 deep including: - dictionaries of lists of ... of nested models - lists of tuples of lists .... of nested models +### Changed + ### Fixed - Fixed `AttributeError: 'get_primary_key_field'` when None is passed to a field with an optional nested model diff --git a/pydantic_redis/__init__.py b/pydantic_redis/__init__.py index d86962b3..c18817ba 100644 --- a/pydantic_redis/__init__.py +++ b/pydantic_redis/__init__.py @@ -17,4 +17,4 @@ __all__ = ["Store", "RedisConfig", "Model", "asyncio"] -__version__ = "0.6.0" +__version__ = "0.7.0" diff --git a/setup.py b/setup.py index aa18ba1b..cafdcd71 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.6.0", + version="0.7.0", description="This package provides a simple ORM for redis using pydantic-like models.", long_description=README, long_description_content_type="text/markdown",