Skip to content

Commit b5a50c1

Browse files
committed
Merge branch 'master' of github.com:EnTeQuAk/django-babel
2 parents b8631d3 + 712fb30 commit b5a50c1

File tree

5 files changed

+23
-14
lines changed

5 files changed

+23
-14
lines changed

CHANGELOG.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,20 @@ Changelog
66

77
.. note:: This version is not yet released and is under active development.
88

9+
10+
0.3.3 - 2014-04-22
11+
------------------
12+
13+
* Fixed release builds
14+
15+
16+
0.3.2 - 2014-04-22
17+
------------------
18+
919
* Initial testing infrastructure
1020
* Add management command `babel` with `makemessages` and `compilemessages`
1121
labels. Mimics django's `makemessages` and `compilemessages` commands.
22+
* Various unicode fixes
1223

1324

1425
0.3.1 - 2013-12-11

MANIFEST.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
include CHANGES.rst README.rst COPYING
1+
include CHANGELOG.rst README.rst COPYING
22
recursive-include tests *
33
recursive-include docs *
44
global-exclude *.pyc
5-
global-exclode *.pyo
5+
global-exclude *.pyo
66
prune docs/_build

docs/conf.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,16 @@
4747

4848
# General information about the project.
4949
project = 'django-babel'
50-
copyright = '2014, Christopher Lenz'
50+
copyright = '2014, Christopher Grebs'
5151

5252
# The version info for the project you're documenting, acts as replacement for
5353
# |version| and |release|, also used in various other places throughout the
5454
# built documents.
5555
#
5656
# The short X.Y version.
57-
version = '1.0'
57+
version = '0.4'
5858
# The full version, including alpha/beta/rc tags.
59-
release = '1.0'
59+
release = '0.4-dev'
6060

6161
# The language for content autogenerated by Sphinx. Refer to documentation
6262
# for a list of supported languages.
@@ -200,7 +200,7 @@
200200
# author, documentclass [howto, manual, or own class]).
201201
latex_documents = [
202202
('index', 'django-babel.tex', 'django-babel Documentation',
203-
'Christopher Lenz', 'manual'),
203+
'Christopher Grebs', 'manual'),
204204
]
205205

206206
# The name of an image file (relative to this directory) to place at the top of
@@ -230,7 +230,7 @@
230230
# (source start file, name, description, authors, manual section).
231231
man_pages = [
232232
('index', 'django-babel', 'django-babel Documentation',
233-
['Christopher Lenz'], 1)
233+
['Christopher Grebs'], 1)
234234
]
235235

236236
# If true, show URL addresses after external links.
@@ -244,7 +244,7 @@
244244
# dir menu entry, description, category)
245245
texinfo_documents = [
246246
('index', 'django-babel', 'django-babel Documentation',
247-
'Christopher Lenz', 'django-babel', 'One line description of project.',
247+
'Christopher Grebs', 'django-babel', 'One line description of project.',
248248
'Miscellaneous'),
249249
]
250250

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ def run_tests(self):
5454
name='django-babel',
5555
description='Utilities for using Babel in Django',
5656
long_description=read('README.rst') + u'\n\n' + read('CHANGELOG.rst'),
57-
version='1.0-dev',
57+
version='0.4-dev',
5858
license='BSD',
59-
author='Christopher Lenz',
60-
author_email='[email protected]',
59+
author='Christopher Grebs',
60+
author_email='[email protected]',
6161
url='http://github.com/graingert/django-babel/',
6262
packages=find_packages(exclude=('tests',)),
6363
tests_require=test_requires,

tasks.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,4 @@ def release(version):
1010
invoke.run('python setup.py sdist')
1111
invoke.run('python setup.py bdist_wheel')
1212

13-
invoke.run(
14-
'twine upload -s dist/django_babel-{0]* '.format(version)
15-
)
13+
invoke.run('twine upload -s dist/django*babel{0}* '.format(version))

0 commit comments

Comments
 (0)