Skip to content

Commit

Permalink
3.2.0rc1 (#357)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmphilli authored and danielhochman committed Sep 22, 2017
1 parent 495eae2 commit 912b869
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
20 changes: 20 additions & 0 deletions docs/release_notes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
Release Notes
=============

v3.2.0rc1
-------

:date: 2017-09-22

This is a backwards compatible, release candidate.

This release candidate updates PynamoDB to interact with Dynamo via the current version of Dynamo's API.
It deprecates some internal methods that were used to interact with Dynamo that are no longer relevant.
If your project was calling those low level methods a warning will be logged.

New features in this release:

* Add support for current version of `DynamoDB API <http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Appendix.CurrentAPI.html>`__

Contributors to this release:

* @jpinner-lyft


v3.1.0
------

Expand Down
5 changes: 3 additions & 2 deletions docs/versioning.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
Versioning Scheme
=================

PynamoDB uses `Semantic Versioning <http://semver.org/>`__, where the version number has
PynamoDB conforms to `PEP 440 <https://www.python.org/dev/peps/pep-0440>`__.
Generally, PynamoDB uses `Semantic Versioning <http://semver.org/>`__, where the version number has
the format:

``MAJOR`` . ``MINOR`` . ``PATCH``

* The ``MAJOR`` version number changes when backward *incompatible* changes are introduced.
* The ``MINOR`` version number changes when new features are added, but are backward compatible.
* The ``PATCH`` version number changes when backward compatible bug fixes are added.
* The ``PATCH`` version number changes when backward compatible bug fixes are added.
2 changes: 1 addition & 1 deletion pynamodb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
"""
__author__ = 'Jharrod LaFon'
__license__ = 'MIT'
__version__ = '3.1.0'
__version__ = '3.2.0rc1'

0 comments on commit 912b869

Please sign in to comment.