From 23eec8ad56bedf13868da0ab723a1b3492e242ca Mon Sep 17 00:00:00 2001 From: Garrett Date: Tue, 4 Jan 2022 13:59:52 -0800 Subject: [PATCH] Prepare for 5.2.0 release (#1010) --- docs/release_notes.rst | 8 +++++--- pynamodb/__init__.py | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/release_notes.rst b/docs/release_notes.rst index 2b23f51d1..1d81b09bb 100644 --- a/docs/release_notes.rst +++ b/docs/release_notes.rst @@ -1,10 +1,12 @@ Release Notes ============= -Unreleased +v5.2.0 ---------- -* The ``IndexMeta`` class has been removed. Now ``type(Index) == type``. -* JSON serialization support (``Model.to_json`` and ``Model.from_json``) has been added. +* The ``IndexMeta`` class has been removed. Now ``type(Index) == type`` (#998) +* JSON serialization support (``Model.to_json`` and ``Model.from_json``) has been added (#857) +* Improved type annotations for expressions and transactions (#951, #991) +* Always use Model attribute definitions in create table schema (#996) v5.1.0 diff --git a/pynamodb/__init__.py b/pynamodb/__init__.py index b0e968e7f..d53c5510d 100644 --- a/pynamodb/__init__.py +++ b/pynamodb/__init__.py @@ -7,4 +7,4 @@ """ __author__ = 'Jharrod LaFon' __license__ = 'MIT' -__version__ = '5.1.0' +__version__ = '5.2.0'