From 1f6624b6c5afc158384cffba42aa9eeb084b5aca Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 28 Apr 2026 13:40:45 +0000 Subject: [PATCH] chore(pharmsol): release v0.26.2 --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 4 ++-- pharmsol-macros/CHANGELOG.md | 14 ++++++++++++++ pharmsol-macros/Cargo.toml | 2 +- 4 files changed, 27 insertions(+), 3 deletions(-) create mode 100644 pharmsol-macros/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 241cb5bb..d291b950 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.27.0](https://github.com/LAPKB/pharmsol/compare/pharmsol-v0.26.1...pharmsol-v0.27.0) - 2026-04-28 + +### Added + +- Domain Specific Language (DSL) using JIT or AOT ([#252](https://github.com/LAPKB/pharmsol/pull/252)) + +### Other + +- Bump actions/upload-pages-artifact from 4 to 5 ([#248](https://github.com/LAPKB/pharmsol/pull/248)) + ## [0.26.1](https://github.com/LAPKB/pharmsol/compare/pharmsol-v0.26.0...pharmsol-v0.26.1) - 2026-04-20 ### Added diff --git a/Cargo.toml b/Cargo.toml index 35f233d1..66323e50 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ resolver = "2" [package] name = "pharmsol" -version = "0.26.1" +version = "0.27.0" edition = "2021" authors = ["Julián D. Otálvaro ", "Markus Hovd"] description = "Rust library for solving analytic and ode-defined pharmacometric models." @@ -23,7 +23,7 @@ wasm = ["dsl-wasm"] [dependencies] pharmsol-dsl = { path = "pharmsol-dsl", version = "0.1.0" } -pharmsol-macros = { path = "pharmsol-macros", version = "0.1.0" } +pharmsol-macros = { path = "pharmsol-macros", version = "0.1.1" } libloading = { version = "0.9.0", optional = true, features = [] } cranelift = { version = "0.131.0", optional = true } cranelift-jit = { version = "0.131.0", optional = true } diff --git a/pharmsol-macros/CHANGELOG.md b/pharmsol-macros/CHANGELOG.md new file mode 100644 index 00000000..1f56bf08 --- /dev/null +++ b/pharmsol-macros/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +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). + +## [Unreleased] + +## [0.1.1](https://github.com/LAPKB/pharmsol/compare/pharmsol-macros-v0.1.0...pharmsol-macros-v0.1.1) - 2026-04-28 + +### Added + +- Domain Specific Language (DSL) using JIT or AOT ([#252](https://github.com/LAPKB/pharmsol/pull/252)) diff --git a/pharmsol-macros/Cargo.toml b/pharmsol-macros/Cargo.toml index 291b888c..e3c1ca0e 100644 --- a/pharmsol-macros/Cargo.toml +++ b/pharmsol-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pharmsol-macros" -version = "0.1.0" +version = "0.1.1" edition = "2021" description = "Procedural macros for pharmsol. Not intended for direct use." license = "GPL-3.0"