From c618b49d9aa1a8a2f3038819cf1062c11f0eaed6 Mon Sep 17 00:00:00 2001 From: "ext-cfa-ixa-release[bot]" <203695190+ext-cfa-ixa-release[bot]@users.noreply.github.com> Date: Mon, 23 Feb 2026 05:22:53 +0000 Subject: [PATCH] release: multiple packages updated --- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ Cargo.toml | 4 ++-- ixa-derive/CHANGELOG.md | 6 ++++++ ixa-derive/Cargo.toml | 2 +- 4 files changed, 40 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15b6a951..e37f66f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,37 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.0-beta1.1](https://github.com/CDCgov/ixa/compare/ixa-v2.0.0-beta1...ixa-v2.0.0-beta1.1) - 2026-02-23 + +### Added + +- ValueCountIndex. Fixes #678. ([#751](https://github.com/CDCgov/ixa/pull/751)) + +### Fixed + +- Implement `PropertyList` and `Query` for tuples of size up to 20 ([#789](https://github.com/CDCgov/ixa/pull/789)) +- check_criterion_regressions reports different stats from criterion ([#785](https://github.com/CDCgov/ixa/pull/785)) +- Fixed mise `docs` task to use regular `target` directory ([#780](https://github.com/CDCgov/ixa/pull/780)) +- Updated the example in the Ixa Book to use `event.current` ([#758](https://github.com/CDCgov/ixa/pull/758)) + +### Other + +- *(deps)* bump qs in /integration-tests/ixa-wasm-tests ([#777](https://github.com/CDCgov/ixa/pull/777)) +- Tweaks to Your First Model ([#787](https://github.com/CDCgov/ixa/pull/787)) +- Refactor IxaError to use thiserror ([#768](https://github.com/CDCgov/ixa/pull/768)) +- Improve examples ([#775](https://github.com/CDCgov/ixa/pull/775)) +- parallelize check-test workflow ([#781](https://github.com/CDCgov/ixa/pull/781)) +- improve benchmarks workflow ([#778](https://github.com/CDCgov/ixa/pull/778)) +- improve cache ([#776](https://github.com/CDCgov/ixa/pull/776)) +- Small improvements to book ([#719](https://github.com/CDCgov/ixa/pull/719)) +- add benchmarks history tracking ([#765](https://github.com/CDCgov/ixa/pull/765)) +- Corrected then instead of them ([#772](https://github.com/CDCgov/ixa/pull/772)) +- Sampling algorithms now use nth method. Fixes #667. ([#760](https://github.com/CDCgov/ixa/pull/760)) +- Faster precommit ([#764](https://github.com/CDCgov/ixa/pull/764)) +- added links and getstarted to homepage ([#767](https://github.com/CDCgov/ixa/pull/767)) +- add mise precommit hook for Conventional Commits ([#752](https://github.com/CDCgov/ixa/pull/752)) +- Make default mise targets rust only + ## [2.0.0-beta1](https://github.com/CDCgov/ixa/compare/ixa-v1.0.0...ixa-v2.0.0-beta1) - 2026-02-09 - Added entities implementation and removed people module. diff --git a/Cargo.toml b/Cargo.toml index 7c360bc6..80a4d579 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ bincode = { version = "^2.0.1", default-features = false, features = [ "std", "serde", ] } -ixa-derive = { version = "2.0.0-beta", path = "ixa-derive" } +ixa-derive = { version = "2.0.0-beta.1", path = "ixa-derive" } seq-macro = "^0.3.5" paste = "^1.0.15" ctor = "^0.5.0" @@ -67,7 +67,7 @@ thiserror = "^2.0.11" [package] name = "ixa" -version = "2.0.0-beta1" +version = "2.0.0-beta1.1" rust-version = "1.88.0" description = "A framework for building agent-based models" repository.workspace = true diff --git a/ixa-derive/CHANGELOG.md b/ixa-derive/CHANGELOG.md index fe71454d..5d45e047 100644 --- a/ixa-derive/CHANGELOG.md +++ b/ixa-derive/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.0-beta.1](https://github.com/CDCgov/ixa/compare/ixa-derive-v2.0.0-beta...ixa-derive-v2.0.0-beta.1) - 2026-02-23 + +### Other + +- Faster precommit ([#764](https://github.com/CDCgov/ixa/pull/764)) + ## [2.0.0-beta](https://github.com/CDCgov/ixa/compare/ixa-derive-v1.0.0...ixa-derive-v2.0.0-beta) - 2026-02-09 - Added entities implementation and removed people module diff --git a/ixa-derive/Cargo.toml b/ixa-derive/Cargo.toml index 2fd7d3ea..4ce32e8d 100644 --- a/ixa-derive/Cargo.toml +++ b/ixa-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ixa-derive" -version = "2.0.0-beta" +version = "2.0.0-beta.1" description = "Procedural macros for Ixa" repository.workspace = true license.workspace = true