Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release v0.9.1 #53

Merged
merged 1 commit into from
Jan 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,40 @@ 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](https://github.com/Armavica/rebop/compare/v0.9.0...v0.9.1) - 2025-01-23

### Added

- Allow parameters to be used in rate expressions.

### Changed

- change error message for species not involved in reactions
- allow species not in reactions to be init but with warning
- rename lib::Rate into lib::PRate
- rename PExpr::Concentration into PExpr::Variable

### Documentation

- fix parameters in docs index page
- add example with Michaelis-Menten rate
- improve docstrings to explain reaction rates
- fix some docstrings of the rust API

### Fixed

- use Mapping and Sequence instead of dict and list in type hints
- raise error on erroneous rate expressions
- make the rates more strict
- ensure that the dataset returned has a time coordinate

### Miscellaneous

- update pixi.lock with new version
- add test with crossed rates
- remove useless clone
- remove unused imports

## [0.9.0](https://github.com/Armavica/rebop/compare/v0.8.3...v0.9.0) - 2025-01-22

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rebop"
version = "0.9.0"
version = "0.9.1"
authors = ["Virgile Andreani <armavica@ulminfo.fr>"]
edition = "2021"
license = "MIT"
Expand Down
Loading