Skip to content

Commit

Permalink
Version 1.2.2.
Browse files Browse the repository at this point in the history
Bugfix release. Include note to error about upgrading South to 1.0, as
that will use south_migrations directory in preference.
  • Loading branch information
dracos committed Oct 1, 2014
1 parent 8b03141 commit 8f84036
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
v1.2.2, 2014-10-01
* Fix a bug in South migrations introduced in v1.2 (80e3f0b4) where
migrating could give an error when it tried to rename the content type.
* Upgrade django-subdomain-instances to get its migrations.
* Don't show keyboard instructions when no next/previous section.
* Fix typo in link in README.

Thanks to Andrew Langhorn, Duncan Parkes, Matthew Somerville, and Martin Wright
for their work on this release.

v1.2.1, 2014-09-26
* Don't error if speaker image caching fails
* Add new-style migrations for Django 1.7
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def read_file(filename):

setup(
name="django-sayit",
version='1.2.1',
version='1.2.2',
description='A data store for speeches and transcripts to make them searchable and pretty.',
long_description=read_file('README.rst'),
author='mySociety',
Expand Down
3 changes: 2 additions & 1 deletion speeches/migrations/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
SOUTH_ERROR_MESSAGE = """\n
For South support, customize the SOUTH_MIGRATION_MODULES setting like so:
For South support, make sure you have South 1.0 installed, or
customize the SOUTH_MIGRATION_MODULES setting like so:
SOUTH_MIGRATION_MODULES = {
'speeches': 'speeches.south_migrations',
Expand Down

0 comments on commit 8f84036

Please sign in to comment.