Skip to content

Commit

Permalink
prepare 0.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
barseghyanartur committed Sep 13, 2016
1 parent cb8b907 commit 98cd19f
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ are used for versioning (schema follows below):
0.3.2 to 0.4).
- All backwards incompatible changes are mentioned in this document.

0.1.10
------
2016-09-13

- Added Django 2.2 and 3.0 to the version comparision.

0.1.9
-----
2016-07-12
Expand Down
2 changes: 2 additions & 0 deletions examples/simple/requirements_django_1_10.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-r requirements_base.txt
Django==1.10.1
2 changes: 2 additions & 0 deletions examples/simple/requirements_django_1_9.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-r requirements_base.txt
Django==1.9.9
1 change: 1 addition & 0 deletions examples/simple/simple/settings_django_1_10.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .settings import *
1 change: 1 addition & 0 deletions examples/simple/simple/settings_django_1_9.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .settings import *
6 changes: 3 additions & 3 deletions examples/simple/simple/urls.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from django.conf.urls import patterns, include, url
from django.conf.urls import include, url
from django.contrib import admin

urlpatterns = patterns('',
urlpatterns = [
# Examples:
# url(r'^$', 'simple.views.home', name='home'),
# url(r'^blog/', include('blog.urls')),

url(r'^admin/', include(admin.site.urls)),
)
]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
except:
readme = ''

version = '0.1.9'
version = '0.1.10'

install_requires = [
#'Django',
Expand Down
4 changes: 2 additions & 2 deletions src/nine/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__title__ = 'django-nine'
__version__ = '0.1.9'
__build__ = 0x00000a
__version__ = '0.1.10'
__build__ = 0x00000b
__author__ = 'Artur Barseghyan <artur.barseghyan@gmail.com>'
__copyright__ = 'Copyright (c) 2015-2016 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
1 change: 1 addition & 0 deletions src/nine/versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
# Loose versions
LOOSE_VERSIONS = (
'1.4', '1.5', '1.6', '1.7', '1.8', '1.9', '1.10', '1.11', '2.0', '2.1',
'2.2', '3.0'
)

for v in LOOSE_VERSIONS:
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@
[tox]
envlist =
py{26,27,33,34,35}-{django15,django16},
py{27,33,34,35}-{django17,django18}
py{27,33,34,35}-{django17,django18,django19,django110}

[testenv]
deps =
django15: -r{toxinidir}/examples/simple/requirements_django_1_5.txt
django16: -r{toxinidir}/examples/simple/requirements_django_1_6.txt
django17: -r{toxinidir}/examples/simple/requirements_django_1_7.txt
django18: -r{toxinidir}/examples/simple/requirements_django_1_8.txt
django19: -r{toxinidir}/examples/simple/requirements_django_1_9.txt
django110: -r{toxinidir}/examples/simple/requirements_django_1_10.txt
commands =
# {envpython} examples/simple/manage.py test {posargs:nine} --settings=simple.settings_test --traceback -v 3
{envpython} setup.py install
Expand Down

0 comments on commit 98cd19f

Please sign in to comment.