-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from pythonhealthdatascience/dev
v1.2.0
- Loading branch information
Showing
6 changed files
with
130 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,45 @@ | ||
# CHANGELOG | ||
# Changelog | ||
|
||
## v1.1.1 | ||
All notable changes to this project will be documented in this file. | ||
|
||
* PATCH: Trauma patient treatment fixed to use correct distribution and parameters. | ||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). Dates formatted as YYYY-MM-DD as per [ISO standard](https://www.iso.org/iso-8601-date-and-time-format.html). | ||
|
||
## v1.1.0 | ||
Consistent identifier (represents all versions, resolves to latest): [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.10026326.svg)](https://doi.org/10.5281/zenodo.10026326) | ||
|
||
### Updates and new features | ||
## [v1.2.0]() - 2024-05-08 | ||
|
||
* Upgraded internal implementation of generating non-overlapping random number streams. This is now implemented to use `np.random.SeedSequence`. See https://numpy.org/doc/stable/reference/random/parallel.html | ||
### Changed | ||
|
||
### Patches | ||
* `CHANGES.md` uses Keep a Changelog formatting, and includes release links, DOIs, and first release. | ||
* `CITATION.cff` includes references, new author, and spelling/grammar fixes. | ||
* `README.md` updated repo overview and spelling/grammar fixes | ||
* Full author list in `__init__` | ||
|
||
* `setup.py` now links to correct Github URL | ||
### Fixed | ||
|
||
* Model uses data from this repository (rather than external) | ||
|
||
### Removed | ||
|
||
* Duplicate `ed_arrivals.csv` | ||
|
||
## [v1.1.1](https://github.com/pythonhealthdatascience/stars-treat-sim/releases/tag/v1.1.1) - 2024-05-01 - [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.11098944.svg)](https://doi.org/10.5281/zenodo.11098944) | ||
|
||
### Fixed | ||
|
||
* Trauma patient treatment fixed to use correct distribution and parameters. | ||
|
||
## [v1.1.0](https://github.com/pythonhealthdatascience/stars-treat-sim/releases/tag/v1.1.0) - 2024-04-06 - [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.10936052.svg)](https://doi.org/10.5281/zenodo.10936052) | ||
|
||
### Changed | ||
|
||
* Upgraded internal implementation of generating non-overlapping random number streams. This is now implemented to use `np.random.SeedSequence`. See [https://numpy.org/doc/stable/reference/random/parallel.html](https://numpy.org/doc/stable/reference/random/parallel.html). | ||
|
||
### Fixed | ||
|
||
* `setup.py` now links to correct Github URL | ||
|
||
## [v1.0.0](https://github.com/pythonhealthdatascience/stars-treat-sim/releases/tag/v1.0.0) - 2023-10-20 - [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.10026327.svg)](https://doi.org/10.5281/zenodo.10026327) | ||
|
||
:seedling: First release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
__author__ = 'T.Monks' | ||
__version__ = '1.1.1' | ||
__author__ = 'Thomas Monks, Alison Harper and Amy Heather' | ||
__version__ = '1.2.0' |
Oops, something went wrong.