Skip to content

Commit 4c9a9f6

Browse files
committed
Merge pull request #5 from EnTeQuAk/master
Post 0.3.3 release
2 parents 9b5a903 + d3e1bf7 commit 4c9a9f6

File tree

7 files changed

+63
-37
lines changed

7 files changed

+63
-37
lines changed

.travis.yml

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
language: python
2-
python: 2.7
2+
python:
3+
- "2.6"
4+
- "2.7"
5+
- "3.3"
6+
- "3.4"
7+
- "pypy"
38
env:
4-
- TOX_ENV=py33-master
5-
- TOX_ENV=py33-1.7.x
6-
- TOX_ENV=py33-1.6.x
7-
- TOX_ENV=py33-1.5.x
8-
- TOX_ENV=pypy-master
9-
- TOX_ENV=pypy-1.7.x
10-
- TOX_ENV=pypy-1.6.x
11-
- TOX_ENV=pypy-1.5.x
12-
- TOX_ENV=py27-master
13-
- TOX_ENV=py27-1.7.x
14-
- TOX_ENV=py27-1.6.x
15-
- TOX_ENV=py27-1.5.x
16-
- TOX_ENV=py26-1.5.x
9+
- DJANGO_VERSION=master
10+
- DJANGO_VERSION=1.7.x
11+
- DJANGO_VERSION=1.6.x
12+
- DJANGO_VERSION=1.5.x
1713
install:
1814
- pip install tox
1915
script:
20-
- tox -e $TOX_ENV
21-
16+
- tox -e "$TRAVIS_PYTHON_VERSION-$DJANGO_VERSION"
17+
matrix:
18+
exclude:
19+
- python: "2.6"
20+
env: DJANGO_VERSION=master
21+
- python: "2.6"
22+
env: DJANGO_VERSION=1.7.x

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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ 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='0.3.2',
57+
version='0.4-dev',
5858
license='BSD',
5959
author='Christopher Grebs',
6060
author_email='[email protected]',

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

tox.ini

Lines changed: 26 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,46 +14,62 @@ deps17 =
1414
master =
1515
https://github.com/django/django/archive/stable/1.7.x.zip#egg=django
1616

17-
[testenv:py26-1.5.x]
17+
[testenv:2.6-1.5.x]
1818
basepython = python2.6
1919
deps = {[testenv]deps15}
2020

21-
[testenv:py26-1.6.x]
21+
[testenv:2.6-1.6.x]
2222
basepython = python2.6
2323
deps = {[testenv]deps16}
2424

25-
[testenv:py27-1.5.x]
25+
[testenv:2.7-1.5.x]
2626
basepython = python2.7
2727
deps = {[testenv]deps15}
2828

29-
[testenv:py27-1.6.x]
29+
[testenv:2.7-1.6.x]
3030
basepython = python2.7
3131
deps = {[testenv]deps16}
3232

33-
[testenv:py27-1.7.x]
33+
[testenv:2.7-1.7.x]
3434
basepython = python2.7
3535
deps = {[testenv]deps17}
3636

37-
[testenv:py27-master]
37+
[testenv:2.7-master]
3838
basepython = python2.7
3939
deps = {[testenv]master}
4040

41-
[testenv:py33-1.5.x]
41+
[testenv:3.3-1.5.x]
4242
basepython = python3.3
4343
deps = {[testenv]deps15}
4444

45-
[testenv:py33-1.6.x]
45+
[testenv:3.3-1.6.x]
4646
basepython = python3.3
4747
deps = {[testenv]deps16}
4848

49-
[testenv:py33-1.7.x]
49+
[testenv:3.3-1.7.x]
5050
basepython = python3.3
5151
deps = {[testenv]deps17}
5252

53-
[testenv:py33-master]
53+
[testenv:3.3-master]
5454
basepython = python3.3
5555
deps = {[testenv]master}
5656

57+
[testenv:3.4-1.5.x]
58+
basepython = python3.4
59+
deps = {[testenv]deps15}
60+
61+
[testenv:3.4-1.6.x]
62+
basepython = python3.4
63+
deps = {[testenv]deps16}
64+
65+
[testenv:3.4-1.7.x]
66+
basepython = python3.4
67+
deps = {[testenv]deps17}
68+
69+
[testenv:3.4-master]
70+
basepython = python3.4
71+
deps = {[testenv]master}
72+
5773
[testenv:pypy-1.5.x]
5874
basepython = pypy
5975
deps = {[testenv]deps17}

0 commit comments

Comments
 (0)