-
Notifications
You must be signed in to change notification settings - Fork 429
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
495eae2
commit 912b869
Showing
3 changed files
with
24 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,4 @@ | |
""" | ||
__author__ = 'Jharrod LaFon' | ||
__license__ = 'MIT' | ||
__version__ = '3.1.0' | ||
__version__ = '3.2.0rc1' |