Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Bump to v0.7.0 #41

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 20, 2024
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
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pydantic_redis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@

__all__ = ["Store", "RedisConfig", "Model", "asyncio"]

__version__ = "0.6.0"
__version__ = "0.7.0"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down