Commit 7845caee by Florian Apolloner

Use the same CHANGELOG file for docs and code.

parent 1eae045f
Changelog
=========
0.10.0
~~~~~~
* Tag names are unique now, use the provided South migrations to upgrade.
0.9.2
~~~~~
......
Version 0.10 (unreleased)
-------------------------
* Tag names are unique now, use the provided South migrations to upgrade.
Version 0.9.3
-------------
* Sorry, no changelog :(
.. include:: ../CHANGELOG.txt
......@@ -38,16 +38,16 @@ master_doc = 'index'
# General information about the project.
project = u'django-taggit'
copyright = u'2010, Alex Gaynor'
copyright = u'2010-2013, Alex Gaynor and others.'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '0.9.3'
version = '0.10.0'
# The full version, including alpha/beta/rc tags.
release = '0.9.3'
release = '0.10.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
......@@ -120,7 +120,7 @@ html_theme = 'default'
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
#html_static_path = ['_static']
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
# using the given strftime format.
......
......@@ -4,8 +4,7 @@ Welcome to django-taggit's documentation!
``django-taggit`` is a reusable Django application designed to making adding
tagging to your project easy and fun.
``django-taggit`` works with Django 1.1 and 1.2 (see :doc:`issues` for known
issues with older versions of Django), and Python 2.4-2.X.
``django-taggit`` works with Django 1.3.X and newer and Python 2.4-2.X.
.. toctree::
:maxdepth: 2
......@@ -15,9 +14,8 @@ issues with older versions of Django), and Python 2.4-2.X.
admin
api
custom_tagging
issues
external_apps
CHANGELOG.txt
changelog
Indices and tables
==================
......
Known Issues
============
Currently there is 1 known issue:
* When run under Django 1.1, doing ``Model.objects.all().delete()`` (or any
bulk deletion operation) on a model with a ``TaggableManager`` will result
in losing the tags for items beyond just those assosciated with the deleted
objects. This issue is not present in Django 1.2.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment