Skip to content

Commit

Permalink
fixes merge conflicts with v0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fredkingham committed Feb 25, 2019
2 parents 2c46977 + f3e8cd0 commit 30f3e2a
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 7 deletions.
10 changes: 10 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

Adds a `age` property to demographics that returns the patient's age.

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

Expand Down Expand Up @@ -141,6 +144,13 @@ including the `reopen_episode_modal.html` template and the url/view at `template
* Psycopg2: 2.7 -> 2.7.6.1
* Python Dateutil: 2.4.2 -> 2.7.5


### 0.12.1 (Minor Release)
* If an item is deleted from the edit item modal, RecordEditor.openEditItemModal will now resolve after the delete item modal is closed with 'deleted'

* Fixes the default investigation modal


### 0.12.0 (Major Release)

#### Misc Changes
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.14.0

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.14.0'
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
2 changes: 1 addition & 1 deletion opal/static/js/test/edit_item.controller.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -330,4 +330,4 @@ describe('EditItemCtrl', function (){
});
});

});
});
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 30f3e2a

Please sign in to comment.