diff --git a/CHANGELOG.md b/CHANGELOG.md index 241cb5bb..1c7604af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,19 @@ 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-05-14 + +### Added + +- Domain Specific Language (DSL) using JIT or AOT ([#252](https://github.com/LAPKB/pharmsol/pull/252)) + +### Other + +- Rename support points to parameters ([#251](https://github.com/LAPKB/pharmsol/pull/251)) +- Refactor benchmarks ([#258](https://github.com/LAPKB/pharmsol/pull/258)) +- add missing macros ([#253](https://github.com/LAPKB/pharmsol/pull/253)) +- 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 faa35d37..9e104ed8 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" autobenches = false authors = ["Julián D. Otálvaro ", "Markus Hovd"] @@ -30,7 +30,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..bd408f37 --- /dev/null +++ b/pharmsol-macros/CHANGELOG.md @@ -0,0 +1,19 @@ +# 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-05-14 + +### Added + +- Domain Specific Language (DSL) using JIT or AOT ([#252](https://github.com/LAPKB/pharmsol/pull/252)) + +### Other + +- Rename support points to parameters ([#251](https://github.com/LAPKB/pharmsol/pull/251)) +- add missing macros ([#253](https://github.com/LAPKB/pharmsol/pull/253)) diff --git a/pharmsol-macros/Cargo.toml b/pharmsol-macros/Cargo.toml index a4f362f1..72a0d781 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"