Skip to content

Commit fab48cc

Browse files
committed
v0.2.2
------ Reverting tests back.
1 parent 311fba4 commit fab48cc

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

CHANGELOG.markdown

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
v0.2.2
2+
------
3+
4+
Reverting tests back.
5+
16
v0.2.1
27
------
38

README.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# [Django Macros URL](https://github.com/phpdude/django-macros-url/) v0.2.1 - Routing must be simple as possible
1+
# [Django Macros URL](https://github.com/phpdude/django-macros-url/) v0.2.2 - Routing must be simple as possible
22

33
Django Macros URL makes it easy to write (and read) URL patterns in your Django applications by using macros.
44

macrosurl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import re
22

3-
VERSION = (0, 2, 1)
3+
VERSION = (0, 2, 2)
44

55
_macros_library = {
66
'id': r'\d+',

tests/urls.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,7 @@
77
from macrosurl import MacroUrlPattern, url
88

99
if sys.version_info >= (2, 7):
10-
import django
1110
import unittest
12-
13-
os.environ['DJANGO_SETTINGS_MODULE'] = 'tests.settings'
14-
django.setup()
1511
else:
1612
from django.utils import unittest
1713

0 commit comments

Comments
 (0)