Skip to content

Commit b5b1f13

Browse files
committed
Version 0.2.2
1 parent c852a14 commit b5b1f13

File tree

3 files changed

+32
-13
lines changed

3 files changed

+32
-13
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
- 0.2.2
2+
* Support for Django 1.6 (Jay McEntire)
3+
14
- 0.2.1
25
* Fix net_contained lookups in InetAddressField
36

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def get_long_description():
1212

1313
setup(
1414
name='django-netfields',
15-
version='0.2.1',
15+
version='0.2.2',
1616
license='BSD',
1717
description='Django PostgreSQL netfields implementation',
1818
long_description=get_long_description(),

tox.ini

Lines changed: 28 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,56 @@
11
[tox]
22
envlist=
3-
py26-django13,
4-
py27-django13,
53
py26-django14,
64
py27-django14,
5+
py26-django15,
6+
py27-django15,
7+
py26-django16,
8+
py27-django16,
79

810
[testenv]
911
commands=
1012
python manage.py test
1113

1214
# Build configurations...
1315

14-
[testenv:py26-django13]
16+
[testenv:py26-django14]
1517
basepython=python2.6
1618
deps=
17-
django==1.3
19+
django==1.4
1820
netaddr
19-
psycopg2==2.4.1
21+
psycopg2
2022

21-
[testenv:py27-django13]
23+
[testenv:py27-django14]
2224
basepython=python2.7
2325
deps=
24-
django==1.3
26+
django==1.4
2527
netaddr
26-
psycopg2==2.4.1
28+
psycopg2
2729

28-
[testenv:py26-django14]
30+
[testenv:py26-django15]
2931
basepython=python2.6
3032
deps=
31-
django==1.4
33+
django==1.5
3234
netaddr
3335
psycopg2
3436

35-
[testenv:py27-django14]
37+
[testenv:py27-django15]
3638
basepython=python2.7
3739
deps=
38-
django==1.4
40+
django==1.5
41+
netaddr
42+
psycopg2
43+
44+
[testenv:py26-django16]
45+
basepython=python2.6
46+
deps=
47+
django==1.6
48+
netaddr
49+
psycopg2
50+
51+
[testenv:py27-django16]
52+
basepython=python2.7
53+
deps=
54+
django==1.6
3955
netaddr
4056
psycopg2

0 commit comments

Comments
 (0)