Increased version to 0.7 and updated german translations.

This commit is contained in:
Florian Apolloner 2013-08-10 12:17:44 +02:00
parent 033a5230d1
commit f54953de60
6 changed files with 74 additions and 2 deletions

View File

@ -1,4 +1,20 @@
Version 0.6 (Unreleased)
Version 0.7 (2013-08-10)
------------------------
* FEATURE: Added support for AutoField.
* FEATURE: There is a "distinct" flag to ensure that only unique rows are
returned.
* FEATURE: Support descending ordering (slighty backwards incompatible).
* FEATURE: Support "strict" querysets, ie wrong filter data returns no results.
* FIXED: Some translation strings were changed to be in line with admin.
* FIXED: Support for Django 1.7.
Version 0.6 (2013-03-25)
------------------------
* raised minimum Django version to 1.4.x

View File

@ -7,3 +7,4 @@ include runtests.py
recursive-include docs *
recursive-include requirements *
recursive-include tests *
recursive-include django_filters/locale *

View File

@ -2,3 +2,5 @@
from __future__ import absolute_import
from .filterset import FilterSet
from .filters import *
VERSION = (0, 7)

Binary file not shown.

View File

@ -0,0 +1,48 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: django-filter\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-08-10 05:34-0500\n"
"PO-Revision-Date: 2013-08-10 12:29+0100\n"
"Last-Translator: Florian Apolloner <florian@apolloner.eu>\n"
"Language-Team: \n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 1.5.4\n"
#: filters.py:153
msgid "Any date"
msgstr "Alle Daten"
#: filters.py:154
msgid "Today"
msgstr "Heute"
#: filters.py:159
msgid "Past 7 days"
msgstr "Letzte 7 Tage"
#: filters.py:163
msgid "This month"
msgstr "Diesen Monat"
#: filters.py:167
msgid "This year"
msgstr "Dieses Jahr"
#: filterset.py:332 filterset.py:341
#, python-format
msgid "%s (descending)"
msgstr "%s (absteigend)"
#: widgets.py:63
msgid "All"
msgstr "Alle"

View File

@ -6,7 +6,7 @@ f.close()
setup(
name='django-filter',
version='0.7a0',
version='0.7',
description=('Django-filter is a reusable Django application for allowing'
' users to filter querysets dynamically.'),
long_description=readme,
@ -14,6 +14,11 @@ setup(
author_email='alex.gaynor@gmail.com',
url='http://github.com/alex/django-filter/tree/master',
packages=find_packages(exclude=['tests']),
package_data = {
'django_filters': [
'locale/*/LC_MESSAGES/*',
],
},
license='BSD',
classifiers=[
'Development Status :: 5 - Production/Stable',