mirror of
https://github.com/Hopiu/django-modeltranslation.git
synced 2026-03-16 22:10:31 +00:00
Fixed release doesn't include rst files.
This commit is contained in:
parent
09a0c4434a
commit
7b8cafbde7
5 changed files with 14 additions and 6 deletions
|
|
@ -1,5 +1,13 @@
|
|||
v0.4.0-beta2
|
||||
============
|
||||
|
||||
FIXED: Release doesn't include rst files.
|
||||
|
||||
|
||||
v0.4.0-beta1
|
||||
============
|
||||
Date: 2012-10-17
|
||||
Packaged from revision 09a0c4434a676c6fd753e6dcde95056c424db62e.
|
||||
|
||||
CHANGED: Refactored documentation using sphinx.
|
||||
(resolves issue 81)
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
include *.txt
|
||||
recursive-include docs *.txt
|
||||
include *.txt *.rst
|
||||
recursive-include docs *.rst conf.py Makefile make.bat
|
||||
recursive-include modeltranslation/static *
|
||||
|
|
|
|||
2
PKG-INFO
2
PKG-INFO
|
|
@ -1,6 +1,6 @@
|
|||
Metadata-Version: 1.0
|
||||
Name: django-modeltranslation
|
||||
Version: 0.4.0-beta1
|
||||
Version: 0.4.0-beta2
|
||||
Summary: Translates Django models using a registration approach.
|
||||
Home-page: https://github.com/deschler/django-modeltranslation
|
||||
Author: Peter Eschler,
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ copyright = u'2009-2012, Peter Eschler, Dirk Eschler'
|
|||
# The short X.Y version.
|
||||
version = '0.4'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '0.4.0-beta1'
|
||||
release = '0.4.0-beta2'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
|
|
|||
4
setup.py
4
setup.py
|
|
@ -2,7 +2,7 @@
|
|||
from distutils.core import setup
|
||||
|
||||
setup(name='django-modeltranslation',
|
||||
version='0.4.0-beta1',
|
||||
version='0.4.0-beta2',
|
||||
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 '
|
||||
|
|
@ -23,7 +23,7 @@ setup(name='django-modeltranslation',
|
|||
'static/modeltranslation/js/*.js']},
|
||||
include_package_data = True,
|
||||
requires=['django(>=1.0)'],
|
||||
download_url='https://github.com/downloads/deschler/django-modeltranslation/django-modeltranslation-0.4.0-beta1.tar.gz',
|
||||
download_url='https://github.com/downloads/deschler/django-modeltranslation/django-modeltranslation-0.4.0-beta2.tar.gz',
|
||||
classifiers=['Framework :: Django',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: BSD License'],
|
||||
|
|
|
|||
Loading…
Reference in a new issue