File tree 3 files changed +24
-3
lines changed
3 files changed +24
-3
lines changed Original file line number Diff line number Diff line change 1
1
Release Notes
2
2
=============
3
3
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
+
4
24
v3.1.0
5
25
------
6
26
Original file line number Diff line number Diff line change 1
1
Versioning Scheme
2
2
=================
3
3
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
5
6
the format:
6
7
7
8
``MAJOR `` . ``MINOR `` . ``PATCH ``
8
9
9
10
* The ``MAJOR `` version number changes when backward *incompatible * changes are introduced.
10
11
* 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.
Original file line number Diff line number Diff line change 7
7
"""
8
8
__author__ = 'Jharrod LaFon'
9
9
__license__ = 'MIT'
10
- __version__ = '3.1.0 '
10
+ __version__ = '3.2.0rc1 '
You can’t perform that action at this time.
0 commit comments