Skip to content

Commit 8437c03

Browse files
committed
update changelog and version
1 parent acbb87a commit 8437c03

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.rst

+7
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,16 @@ Latest versions (3.0.x)
2727

2828
Version 3.0.2 (2021-04-26)
2929
--------------------------
30+
- Added Novavax as one of the default vaccines.
31+
- If ``use_waning=True``, people will now become *undiagnosed* when they recover (so they are not incorrectly marked as diagnosed if they become reinfected).
3032
- Added a new method, ``sim.to_df()``, that exports results to a pandas dataframe.
3133
- Added ``people.lock()`` and ``people.unlock()`` methods, so you do not need to set ``people._lock`` manually.
3234
- Added extra parameter checking to ``people.set_pars(pars)``, so ``pop_size`` is guaranteed to be an integer.
35+
- Flattened ``sim['immunity']`` to no longer have separate axes for susceptible, symptomatic, and severe.
36+
- Fixed a bug in ``cv.sequence()``, introduced in version 2.1.2, that meant it would only ever trigger the last intervention.
37+
- Fixed a bug where if subtargeting was used with ``cv.vaccinate()``, it would trigger on every day.
38+
- Fixed ``msim.compare()`` to be more careful about not converting all results to integers.
39+
- *Regression information*: If you are using waning, ``sim.people.diagnosed`` no longer refers to everyone who has ever been diagnosed, only those still infectious. You can use ``sim.people.defined('date_diagnosed')`` in place of ``sim.people.true('diagnosed')`` (before these were identical).
3340
- *GitHub info*: PR `1020 <https://github.com/amath-idm/covasim/pull/1020>`__
3441

3542

covasim/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
__all__ = ['__version__', '__versiondate__', '__license__']
66

77
__version__ = '3.0.2'
8-
__versiondate__ = '2021-04-23'
8+
__versiondate__ = '2021-04-26'
99
__license__ = f'Covasim {__version__} ({__versiondate__}) — © 2021 by IDM'

0 commit comments

Comments
 (0)