Ready to new release

This commit is contained in:
Pablo Martín 2014-10-13 15:57:44 +02:00
parent c9c7d07741
commit ccc40aa0f5
6 changed files with 13 additions and 5 deletions

View file

@ -1,3 +1,11 @@
0.1.3 (2014-10-13)
------------------
* Support to Django 1.7 (I'm sorry to the delay)
* Thanks to:
* `Hernil <https://github.com/hernil>`_
* `Vasyl <https://github.com/vasyabigi>`_
0.1.2 (2014-04-04) 0.1.2 (2014-04-04)
------------------ ------------------

View file

@ -23,7 +23,7 @@ from example.app.models import Book
class MultiSelectTestCase(TestCase): class MultiSelectTestCase(TestCase):
fixtures = ['data.json'] fixtures = ['app_data.json']
def test_filter(self): def test_filter(self):
self.assertEqual(Book.objects.filter(tags__contains='sex').count(), 1) self.assertEqual(Book.objects.filter(tags__contains='sex').count(), 1)

View file

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Copyright (c) 2012-2013 by Pablo Martín <goinnn@gmail.com> # Copyright (c) 2012 by Pablo Martín <goinnn@gmail.com>
# #
# This program is free software: you can redistribute it and/or modify # 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 # it under the terms of the GNU Lesser General Public License as published by

View file

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Copyright (c) 2012-2013 by Pablo Martín <goinnn@gmail.com> # Copyright (c) 2012 by Pablo Martín <goinnn@gmail.com>
# #
# This program is free software: you can redistribute it and/or modify # 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 # it under the terms of the GNU Lesser General Public License as published by

View file

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Copyright (c) 2012-2013 by Pablo Martín <goinnn@gmail.com> # Copyright (c) 2012 by Pablo Martín <goinnn@gmail.com>
# #
# This program is free software: you can redistribute it and/or modify # 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 # it under the terms of the GNU Lesser General Public License as published by
@ -25,7 +25,7 @@ def read(*rnames):
setup( setup(
name="django-multiselectfield", name="django-multiselectfield",
version="0.1.2", version="0.1.3",
author="Pablo Martin", author="Pablo Martin",
author_email="goinnn@gmail.com", author_email="goinnn@gmail.com",
description="Django multiple select field", description="Django multiple select field",