Skip to content

Commit 912b869

Browse files
jmphillidanielhochman
authored andcommitted
3.2.0rc1 (#357)
1 parent 495eae2 commit 912b869

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

docs/release_notes.rst

+20
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,26 @@
11
Release Notes
22
=============
33

4+
v3.2.0rc1
5+
-------
6+
7+
:date: 2017-09-22
8+
9+
This is a backwards compatible, release candidate.
10+
11+
This release candidate updates PynamoDB to interact with Dynamo via the current version of Dynamo's API.
12+
It deprecates some internal methods that were used to interact with Dynamo that are no longer relevant.
13+
If your project was calling those low level methods a warning will be logged.
14+
15+
New features in this release:
16+
17+
* Add support for current version of `DynamoDB API <http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Appendix.CurrentAPI.html>`__
18+
19+
Contributors to this release:
20+
21+
* @jpinner-lyft
22+
23+
424
v3.1.0
525
------
626

docs/versioning.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
Versioning Scheme
22
=================
33

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

78
``MAJOR`` . ``MINOR`` . ``PATCH``
89

910
* The ``MAJOR`` version number changes when backward *incompatible* changes are introduced.
1011
* The ``MINOR`` version number changes when new features are added, but are backward compatible.
11-
* The ``PATCH`` version number changes when backward compatible bug fixes are added.
12+
* The ``PATCH`` version number changes when backward compatible bug fixes are added.

pynamodb/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
"""
88
__author__ = 'Jharrod LaFon'
99
__license__ = 'MIT'
10-
__version__ = '3.1.0'
10+
__version__ = '3.2.0rc1'

0 commit comments

Comments
 (0)