From c23e37d327adabecc5b1a5e1af938e9aa31712e1 Mon Sep 17 00:00:00 2001 From: Matthew Somerville Date: Fri, 26 Sep 2014 01:23:02 +0100 Subject: [PATCH] Version 1.2.1. --- CHANGES.txt | 10 ++++++++++ MANIFEST.in | 1 + setup.py | 2 +- 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index 1650a2c7..8427374b 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,13 @@ +v1.2.1, 2014-09-26 + * Don't error if speaker image caching fails + * Add new-style migrations for Django 1.7 + * Allow loading of remote Akoma Ntoso files + * Make it easier to override the ImportCommand behavior that is + filesystem-specific + * Remove requirement to run collectstatic before tests + +Thanks to James McKinney and Matthew Somerville for their work on this release. + v1.2, 2014-09-19 * Cache speaker image from URL, using face recognition for thumbnail * Improve display of subsections on section pages diff --git a/MANIFEST.in b/MANIFEST.in index f714a10e..ab8ac568 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,5 @@ include *.txt +include README.rst recursive-include speeches/locale * recursive-include speeches/static * recursive-include speeches/templates * diff --git a/setup.py b/setup.py index 453a51d2..b236c797 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ def read_file(filename): setup( name="django-sayit", - version='1.2', + version='1.2.1', description='A data store for speeches and transcripts to make them searchable and pretty.', long_description=read_file('README.rst'), author='mySociety',