From aed968d5dadb48bd1d38231c13610691197da83b Mon Sep 17 00:00:00 2001 From: Garrett Date: Tue, 9 Jul 2019 09:49:16 -0400 Subject: [PATCH] Update release notes for 4.0.0b3 (#659) --- docs/release_notes.rst | 6 +++++- pynamodb/__init__.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/release_notes.rst b/docs/release_notes.rst index 73faea461..da35e66e8 100644 --- a/docs/release_notes.rst +++ b/docs/release_notes.rst @@ -1,7 +1,7 @@ Release Notes ============= -v4.0.0b2 +v4.0.0b3 -------- :date: 2019-04-10 @@ -40,6 +40,10 @@ When upgrading, pay special attention to use of ``**filters`` and ``**expected_v attribute names. Also keep an eye out for kwargs like ``user_id__eq=5`` or ``email__null=True``, which are no longer supported. If you're not already using ``mypy`` to type check your code, it can help you catch cases like these. +New features in this release: + +* Support for Transactions (``TransactGet`` and ``TransactWrite``) (#618) + Other changes in this release: * Python 2.6 is no longer supported. 4.x.x will be the last major release to support Python 2.7 given the upcoming EOL. diff --git a/pynamodb/__init__.py b/pynamodb/__init__.py index 6b74836ea..d0b7615a1 100644 --- a/pynamodb/__init__.py +++ b/pynamodb/__init__.py @@ -7,4 +7,4 @@ """ __author__ = 'Jharrod LaFon' __license__ = 'MIT' -__version__ = '4.0.0b2' +__version__ = '4.0.0b3'