Skip to content
Open
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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <juliandavid347@gmail.com>", "Markus Hovd"]
description = "Rust library for solving analytic and ode-defined pharmacometric models."
Expand All @@ -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 }
Expand Down
14 changes: 14 additions & 0 deletions pharmsol-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
2 changes: 1 addition & 1 deletion pharmsol-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down