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)
------------------

View File

@ -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)

View File

@ -1,5 +1,5 @@
# -*- 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
# it under the terms of the GNU Lesser General Public License as published by

View File

@ -1,5 +1,5 @@
# -*- 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
# it under the terms of the GNU Lesser General Public License as published by

View File

@ -1,5 +1,5 @@
# -*- 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
# 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",