Skip to content

Commit

Permalink
Bump version; retire Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
georgedorn committed Jan 4, 2022
1 parent d799cce commit 09c0be1
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 73 deletions.
68 changes: 0 additions & 68 deletions .travis.yml

This file was deleted.

4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -34,8 +34,8 @@ Requirements
Core
----

* 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)
* Python 3.6+, preferably 3.8+ (Whatever is supported by your version of Django)
* Django 2.2, 3.2 (LTS releases) or Django 4.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+ (Whatever is supported by your version of Django)
* Django 1.11, 2.2 (LTS releases) or Django 3.0 (latest release)
* Python 3.6+, preferably 3.8+ (Whatever is supported by your version of Django)
* Django 2.2, 3.2 (LTS releases) or Django 4.0 (latest release)
* dateutil (http://labix.org/python-dateutil) >= 2.1

Format Support
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.4
v0.14.3
v0.14.2
v0.14.1
Expand Down
9 changes: 9 additions & 0 deletions docs/release_notes/v0.14.4.rst
@@ -0,0 +1,9 @@
v0.14.4
=======

:date: 2022-01-03

Added support for Django 4.0.
Drops explicit support for Django 3.0, 3.1 (non-LTS).
Drops all support for Python 2.
Fixes a TZ bug in date-formatted Retry-After responses from throttling revealed by Django 4.0's switch to Zoneinfo.
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, 3)
VERSION = (0, 14, 4)

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

0 comments on commit 09c0be1

Please sign in to comment.