Skip to content

Commit

Permalink
Merge branch 'v0.13.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
fredkingham committed Feb 22, 2019
2 parents 7800d37 + 42f6ec4 commit 2307452
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 6 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 0.13.1 (Minor Release)

Upgrades the setup.py Django version from 2.0.9 to 2.0.13. Removes the six library dependency from setup.py.

### 0.13.0 (Major Release)

#### Removes support for Python 2.x
Expand Down
18 changes: 17 additions & 1 deletion doc/docs/reference/upgrading.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
This document provides instructions for specific steps required to upgrading your Opal
application to a later version where there are extra steps required.

### 0.13.0 -> 0.13.1

Upgrades django (minor security upgrade).

How you do this depends on how you have configured your application. You will need to
update both the Opal version, and versions of upgraded dependencies if
you have specified them in for instance, a requirements.txt.

(This will be the case if you use the requirements.txt originally provided by
`opal startproject`)

# requirements.txt
opal==0.13.1
django==2.0.13


### 0.12.0 - 0.11.2 -> 0.13.0

#### Python versions
Expand All @@ -24,7 +40,7 @@ you have specified them in for instance, a requirements.txt.
`opal startproject`)

# requirements.txt
opal==0.10.0
opal==0.13.0
django==2.0.9
django-reversion==3.0.1
djangorestframework==3.7.4
Expand Down
2 changes: 1 addition & 1 deletion doc/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ dev_addr: 0.0.0.0:8965
include_next_prev: false

extra:
version: v0.13.0
version: v0.13.1

markdown_extensions:
- fenced_code
2 changes: 1 addition & 1 deletion opal/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""
Declare our current version string
"""
__version__ = '0.13.0'
__version__ = '0.13.1'
2 changes: 1 addition & 1 deletion opal/scaffolding/scaffold/requirements.txt.jinja2
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# cryptography is required for heroku deployment
django==2.0.9
django==2.0.13
dj-database-url==0.2.1
gunicorn==0.17.4
psycopg2==2.7.6.1
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
'ffs>=0.0.8.2',
'letter==0.5',
'jinja2==2.10',
'django==2.0.9',
'django==2.0.13',
'requests==2.20.1',
'django-axes==1.7.0',
'djangorestframework==3.7.4',
Expand All @@ -57,7 +57,6 @@
'python-dateutil==2.7.5',
'django-celery==3.2.2',
'celery==3.1.25',
'six>=1.10.0',
],
classifiers = [
"Programming Language :: Python",
Expand Down

0 comments on commit 2307452

Please sign in to comment.