Skip to content
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

Bump to v0.5.0 #28

Merged
merged 1 commit into from
Feb 10, 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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [0.5.0] - 2024-02-10

### Added

### Changed

- Upgraded to pydantic v2.

### Fixed

- Fixed orjson.JSONDecodeError when models have optional string fields

## [0.4.3] - 2022-12-29

### Added
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Most Notable Features are:

## Benchmarks

### v0.**
### <v0.5

On an average PC ~16GB RAM, i7 Core

Expand Down Expand Up @@ -57,7 +57,7 @@ benchmark_bulk_insert[redis_store] 1,025.0436 (8.29)
-------------------------------------------------------------------------------------------------------------------------
```

# v1.** (with pydantic v2)
# >v0.5 (with pydantic v2)

```
------------------------------------------------ benchmark: 22 tests ------------------------------------------------
Expand Down
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.4.3",
version="0.5.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
Loading