Skip to content

Commit c37e3fe

Browse files
committed
Bump to 0.5
1 parent 576efb8 commit c37e3fe

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@
4646
# built documents.
4747
#
4848
# The short X.Y version.
49-
version = '0.4'
49+
version = '0.5'
5050
# The full version, including alpha/beta/rc tags.
51-
release = '0.4'
51+
release = '0.5'
5252

5353
# The language for content autogenerated by Sphinx. Refer to documentation
5454
# for a list of supported languages.

docs/index.rst

+1
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ The first priority is better documentation. After that, there are some features
141141
Changelog
142142
=========
143143

144+
* 0.5: Added support for ``unique`` and ``unique_together`` constraints at the bundle (as opposed to version) level. Improved support for UUID-based models and added tests to ascertain everything works as normal.
144145
* 0.4: Added a ``VersionedModelBase`` and removed all explicit references to ``vid`` as the primary key, to be able to support models regardless of whether their AutoField is named ``vid`` and regardless of whether it works with regular IDs, UUIDs et cetera. Changed the way you add in shortcuts. Use ``shortcuts.VersionedModel`` to get a versioned model _with_ shortcuts, or use both ``models.VersionedModel`` and ``shortcuts.VersionedModelShortcuts`` to stick to the old ways of doing things.
145146
* 0.3: Improved docs and added support for versioning on models with concrete inheritance.
146147
* 0.2: First public release. Added a lot of unit tests.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import subprocess
33
from setuptools import setup, find_packages
44

5-
version = '0.4'
5+
version = '0.5'
66
README = os.path.join(os.path.dirname(__file__), 'README')
77
long_description = open(README).read()
88
setup(name='django-revisions',

0 commit comments

Comments
 (0)