Skip to content

Commit 546b211

Browse files
committed
chore(v2.0.0): update init, changelog and citation for release
1 parent 8ae0dc4 commit 546b211

3 files changed

Lines changed: 30 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,33 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
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).
77

8+
## v2.0.0 - 2026-03-06
9+
10+
This release introduces several changes and fixes - including a new approach to choosing length of warm-up, fix to `run_scenarios()`, and inclusion of all metrics when choosing replications, among other things.
11+
12+
### Added
13+
14+
* Add coverage badge
15+
* New approach to choosing length of warm-up: changed from time series inspection and interval audit, to `WarmupAuditor`. Changed parameters for this analysis.
16+
* Add retrospective QA summary.
17+
18+
### Changed
19+
20+
* Set bin widths for more consistency with R.
21+
* Import replications functions from sim-tools.
22+
* Improve `CONTRIBUTING.md` and `README.md`, and completed STRESS.
23+
* Print parameters when run scenarios.
24+
* Update author list.
25+
* Minor corrections to docstrings and documentation.
26+
* Moved `period` to `Patient` and log end time.
27+
* Include all metrics in choosing replications notebook.
28+
29+
### Fixed
30+
31+
* Fixed display of input modelling figures on GitHub by making them static.
32+
* Fix set-up of separate `param` in `run_scenarios` so it uses a fresh instance.
33+
* Upgraded packages to address dependabot security risks.
34+
835
## v1.3.0 - 2025-08-05
936

1037
This release introduces several new features including input modelling, code-based model validation, new key performance indicators, and more - as well as improvements to documentation and code.

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ abstract: >-
2525
Reproducible analytical pipeline (RAP) for python discrete-event simulation
2626
(DES) implementing a simple M/M/s queueing model.
2727
license: MIT
28-
version: '1.3.0'
29-
date-released: '2025-08-25'
28+
version: '2.0.0'
29+
date-released: '2026-03-06'

simulation/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
SimPy Discrete-Event Simulation (DES) Model.
33
"""
44

5-
__version__ = "1.3.0"
5+
__version__ = "2.0.0"
66

77

88
# This section allows us to import using e.g. `from simulation import Model`,

0 commit comments

Comments
 (0)