Skip to content

Commit

Permalink
Update radCAD version with debugging improvement (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
BenSchZA authored Jul 26, 2022
1 parent 8addd77 commit a5fa0e6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.9.1] - 2022-07-26
### Added
- Thanks to @vmeylan for a developer experience contribution in `radcad/core.py`: make `_update_state()` error messages more verbose for easier debugging

## [0.9.0] - 2022-06-14
### Changed
- `Context` passed to `before_subset(context)` hook will now correctly receive a single parameter subset and not all subsets
Expand All @@ -12,7 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [0.8.4] - 2021-09-04
### Added
= Overide for `__deepcopy__` method of Executable class to enable deepcopy after a simulation/experiment has been run
- Overide for `__deepcopy__` method of Executable class to enable deepcopy after a simulation/experiment has been run
- Add regression test for above `__deepcopy__` method

## [0.8.3] - 2021-08-30
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "radcad"
version = "0.9.0"
version = "0.9.1"
description = "A Python package for dynamical systems modelling & simulation, inspired by and compatible with cadCAD"
authors = ["CADLabs <[email protected]>"]
packages = [
Expand Down
2 changes: 1 addition & 1 deletion radcad/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.9.0"
__version__ = "0.9.1"

from radcad.wrappers import Context, Model, Simulation, Experiment
from radcad.engine import Engine
Expand Down

0 comments on commit a5fa0e6

Please sign in to comment.