Skip to content

Commit

Permalink
Update docs, version, release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
georgedorn committed Jan 6, 2020
1 parent c9c08ab commit dc098c7
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.rst
Expand Up @@ -24,7 +24,7 @@ django-tastypie

Creating delicious APIs for Django apps since 2010.

Currently in beta (v0.14.2) but being used actively in production on several
Currently in beta but being used actively in production on several
sites.


Expand All @@ -34,8 +34,8 @@ Requirements
Core
----

* Python 2.7+ or Python 3.4+
* Django - 1.11 (LTS), 2.0 (LTS) or 2.1 - the last two LTS and the last incremental release are supported.
* Python 2.7+ or Python 3.4+ (Whatever is supported by your version of Django)
* Django 1.11, 2.2 (LTS releases) or Django 3.0 (latest release)
* dateutil (http://labix.org/python-dateutil) >= 2.1

Format Support
Expand Down
4 changes: 2 additions & 2 deletions docs/index.rst
Expand Up @@ -83,8 +83,8 @@ Requirements
Core
----

* Python 2.7+ or Python 3.4+
* Django 1.11 (LTS releases) or Django 2.0+ (requires Python 3.4+)
* Python 2.7+ or Python 3.4+ (Whatever is supported by your version of Django)
* Django 1.11, 2.2 (LTS releases) or Django 3.0 (latest release)
* dateutil (http://labix.org/python-dateutil) >= 2.1

Format Support
Expand Down
2 changes: 0 additions & 2 deletions docs/release_notes/dev.rst
Expand Up @@ -7,8 +7,6 @@ copied to the release notes for the next release.
Major changes
-------------

* Dropped support for Django 1.8 (EOL).
* Compatability fixes for upstream changes, most notably the removal of QUERY_TERMS.

Bugfixes
--------
Expand Down
1 change: 1 addition & 0 deletions docs/release_notes/index.rst
Expand Up @@ -5,6 +5,7 @@ Release Notes
:maxdepth: 1

dev
v0.14.3
v0.14.2
v0.14.1
v0.14.0
Expand Down
9 changes: 9 additions & 0 deletions docs/release_notes/v0.14.3.rst
@@ -0,0 +1,9 @@
v0.14.3
=======

:date: 2019-12-16

Added support for Django 3.0; minor bugs and regressions fixed.
Drops explicit support for Django 2.1 (non-LTS).

This will be the last version to explicitly support Python 2.0.
2 changes: 1 addition & 1 deletion tastypie/__init__.py
Expand Up @@ -3,7 +3,7 @@

__author__ = 'Daniel Lindsley & the Tastypie core team'

VERSION = (0, 14, 2)
VERSION = (0, 14, 3)

__short_version__ = '.'.join(map(str, VERSION[0:2]))
__version__ = ''.join(['.'.join(map(str, VERSION[0:3])), ''.join(VERSION[3:])])

0 comments on commit dc098c7

Please sign in to comment.