Skip to content

Commit

Permalink
Bumped to v0.9.9!
Browse files Browse the repository at this point in the history
  • Loading branch information
toastdriven committed May 20, 2011
1 parent c766030 commit 90d2700
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,23 @@ django-tastypie

Creating delicious APIs for Django apps since 2010.

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


Requirements
============

* Python 2.4+
* Django 1.1+
* Python 2.5+
* Django 1.2+ (May work on Django 1.1)
* mimeparse 0.1.3+ (http://code.google.com/p/mimeparse/)

* Older versions will work, but their behavior on JSON/JSONP is a touch wonky.

* dateutil (http://labix.org/python-dateutil)
* python_digest (https://bitbucket.org/akoha/python-digest/)
* lxml (http://codespeak.net/lxml/) if using the XML serializer
* pyyaml (http://pyyaml.org/) if using the YAML serializer
* uuid (present in 2.5+, downloadable from http://pypi.python.org/pypi/uuid/) if using the ``ApiKey`` authentication


What's It Look Like?
Expand Down Expand Up @@ -90,4 +90,4 @@ Reference Material
* http://jacobian.org/writing/rest-worst-practices/

:author: Daniel Lindsley
:date: 2011/04/27
:date: 2011/05/20
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@
# built documents.
#
# The short X.Y version.
version = '0.9.8'
version = '0.9.9'
# The full version, including alpha/beta/rc tags.
release = '0.9.8-beta'
release = '0.9.9'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name='django-tastypie',
version='0.9.8-beta',
version='0.9.9',
description='A flexible & capable API layer for Django.',
author='Daniel Lindsley',
author_email='[email protected]',
Expand Down
2 changes: 1 addition & 1 deletion tastypie/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__author__ = 'Daniel Lindsley, Cody Soyland, Matt Croydon'
__version__ = (0, 9, 8, 'beta')
__version__ = (0, 9, 9)

0 comments on commit 90d2700

Please sign in to comment.