Skip to content

Commit 181c5f0

Browse files
committed
Update CHANGELOG.md and bump to revision 11
1 parent a78e442 commit 181c5f0

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Projects before `2.11.4` should be able to be migrated to version `2.11.4` witho
44

55
Versions `2.11.4`, `2.12.0` and later all can be run using the branch `main`. A project will automatically update to the earliest supported version (currently `2.11.4`), but updating a project to the latest version can be done using the FE or `op.migrate(P, 'latest')`
66

7+
## Revision 11
8+
- Fix `checkifparsetoverridesscenario()` not working with multiple budget years
9+
- Small FE fixes
10+
711
## Revision 10
812
- Add objective option for minimising number of prevalent undiagnosed HIV infections
913

optima/loadtools.py

+1
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ def setrevisionmigrations(which='migrations'):
147147
('7', ('8', '2024-09-27', None, 'Update definition of "latediag" to be CD4<350 (and add separate output for undiagCD4<350 to align)')),
148148
('8', ('9', '2024-10-07', None, 'Update calculation of ICERs')),
149149
('9', ('10', '2024-10-09', None, 'Add objective option for minimising number of prevalent undiagnosed HIV infections')),
150+
('9', ('10', '2024-11-01', None, 'A couple of FE fixes')),
150151
])
151152

152153

optima/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
supported_versions = ['2.11.4','2.12.0','2.12.1','2.12.2'] # (note: ' not " because setup.py)
2-
revision = '10'
3-
revisiondate = '2024-10-09'
2+
revision = '11'
3+
revisiondate = '2024-11-01'
44
versions_different_databook = ['2.10.13'] # Versions where we start using a different databook format
55

66
version = supported_versions[-1]

0 commit comments

Comments
 (0)