diff --git a/CHANGES.rst b/CHANGES.rst index aab7b48..6452a67 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,11 @@ +0.1.3 (2014-10-13) +------------------ + +* Support to Django 1.7 (I'm sorry to the delay) +* Thanks to: + * `Hernil `_ + * `Vasyl `_ + 0.1.2 (2014-04-04) ------------------ diff --git a/example/example/app/fixtures/data.json b/example/example/app/fixtures/app_data.json similarity index 100% rename from example/example/app/fixtures/data.json rename to example/example/app/fixtures/app_data.json diff --git a/example/example/app/tests.py b/example/example/app/tests.py index 68530e2..a189f84 100644 --- a/example/example/app/tests.py +++ b/example/example/app/tests.py @@ -23,7 +23,7 @@ from example.app.models import Book class MultiSelectTestCase(TestCase): - fixtures = ['data.json'] + fixtures = ['app_data.json'] def test_filter(self): self.assertEqual(Book.objects.filter(tags__contains='sex').count(), 1) diff --git a/multiselectfield/db/fields.py b/multiselectfield/db/fields.py index 6367466..f6af738 100644 --- a/multiselectfield/db/fields.py +++ b/multiselectfield/db/fields.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2012-2013 by Pablo Martín +# Copyright (c) 2012 by Pablo Martín # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published by diff --git a/multiselectfield/forms/fields.py b/multiselectfield/forms/fields.py index db3fd1b..6c5fc85 100644 --- a/multiselectfield/forms/fields.py +++ b/multiselectfield/forms/fields.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2012-2013 by Pablo Martín +# Copyright (c) 2012 by Pablo Martín # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published by diff --git a/setup.py b/setup.py index 5e3486d..87cbc3a 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2012-2013 by Pablo Martín +# Copyright (c) 2012 by Pablo Martín # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published by @@ -25,7 +25,7 @@ def read(*rnames): setup( name="django-multiselectfield", - version="0.1.2", + version="0.1.3", author="Pablo Martin", author_email="goinnn@gmail.com", description="Django multiple select field",