From b7cc3cf262e1211c3bda564ae39502eb2160bad9 Mon Sep 17 00:00:00 2001 From: Dirk Eschler Date: Tue, 7 Jun 2011 15:02:38 +0000 Subject: [PATCH] Bumped version to 0.3.1. --- CHANGELOG.txt | 1 + LICENSE.txt | 2 +- MANIFEST.in | 2 +- PKG-INFO | 6 +++--- setup.py | 4 ++-- 5 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index f235c0e..cc873e6 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,5 @@ CHANGED: Renamed media folder to static. + (resolves issue 61) v0.3 ==== diff --git a/LICENSE.txt b/LICENSE.txt index fbf6571..225c895 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2010, 2009, Peter Eschler, Dirk Eschler +Copyright (c) 2011, 2010, 2009, Peter Eschler, Dirk Eschler All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/MANIFEST.in b/MANIFEST.in index 96da977..aa59e8b 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,3 @@ include *.txt recursive-include docs *.txt -recursive-include modeltranslation/media * +recursive-include modeltranslation/static * diff --git a/PKG-INFO b/PKG-INFO index 65fe53c..0766499 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,12 +1,12 @@ Metadata-Version: 1.0 Name: django-modeltranslation -Version: 0.2 +Version: 0.3.1 Summary: Translates Django models using a registration approach. Home-page: http://code.google.com/p/django-modeltranslation/ Author: Peter Eschler, Dirk Eschler -Author-email: "Peter Eschler" , - "Dirk Eschler" +Author-email: "Peter Eschler" , + "Dirk Eschler" License: New BSD Description: The modeltranslation application can be used to translate dynamic content of existing models to an arbitrary number of languages diff --git a/setup.py b/setup.py index 4dba612..7fae8b3 100755 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from distutils.core import setup setup(name='django-modeltranslation', - version='0.3', + version='0.3.1', description='Translates Django models using a registration approach.', long_description='The modeltranslation application can be used to ' 'translate dynamic content of existing models to an ' @@ -20,7 +20,7 @@ setup(name='django-modeltranslation', packages=['modeltranslation', 'modeltranslation.management', 'modeltranslation.management.commands'], requires=['django(>=1.0)'], - download_url='http://django-modeltranslation.googlecode.com/files/django-modeltranslation-0.2.tar.gz', + download_url='http://django-modeltranslation.googlecode.com/files/django-modeltranslation-0.3.1.tar.gz', classifiers=['Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License'],