From d68d967f8a7daa6c82dd46f0b636cce8a02aefc0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 23 Jul 2024 20:29:50 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 6 +++--- Cargo.toml | 6 +++--- crates/rustitude-core/CHANGELOG.md | 13 +++++++++++++ crates/rustitude-core/Cargo.toml | 2 +- crates/rustitude/CHANGELOG.md | 5 +++++ py-rustitude/CHANGELOG.md | 10 ++++++++++ 6 files changed, 35 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4a0f172..b852b95 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1102,7 +1102,7 @@ dependencies = [ [[package]] name = "py-rustitude" -version = "0.9.1" +version = "0.9.2" dependencies = [ "ganesh", "nalgebra", @@ -1282,7 +1282,7 @@ dependencies = [ [[package]] name = "rustitude" -version = "0.9.1" +version = "0.9.2" dependencies = [ "criterion", "num_cpus", @@ -1293,7 +1293,7 @@ dependencies = [ [[package]] name = "rustitude-core" -version = "5.0.0" +version = "6.0.0" dependencies = [ "approx", "dyn-clone", diff --git a/Cargo.toml b/Cargo.toml index 335ed23..32e4ced 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ resolver = "2" default-members = ["crates/*"] [workspace.package] -version = "0.9.1" +version = "0.9.2" edition = "2021" authors = ["Nathaniel Dene Hoffman "] description = "A library to create and operate models for particle physics amplitude analyses" @@ -12,8 +12,8 @@ repository = "https://github.com/denehoffman/rustitude/" homepage = "https://github.com/denehoffman/rustitude/" [workspace.dependencies] -rustitude = { version = "0.9.1", path = "crates/rustitude" } -rustitude-core = { version = "5.0.0", path = "crates/rustitude-core" } +rustitude = { version = "0.9.2", path = "crates/rustitude" } +rustitude-core = { version = "6.0.0", path = "crates/rustitude-core" } rustitude-gluex = { version = "0.4.8", path = "crates/rustitude-gluex" } rayon = { version = "1.10.0" } approx = { version = "0.5.1", features = ["num-complex"] } diff --git a/crates/rustitude-core/CHANGELOG.md b/crates/rustitude-core/CHANGELOG.md index e88d96b..5463807 100644 --- a/crates/rustitude-core/CHANGELOG.md +++ b/crates/rustitude-core/CHANGELOG.md @@ -5,6 +5,19 @@ 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). +## [6.0.0](https://github.com/denehoffman/rustitude/compare/rustitude-core-v5.0.0...rustitude-core-v6.0.0) - 2024-07-23 + +### Added +- create method to add `Dataset`s +- add methods to allow EPS to be calculated from polarization angle and magnitude +- remove duplicate methods for loading data and replace with enum + +### Fixed +- remove print statement from add + +### Other +- update lib doc to use new data reading methods + ## [5.0.0](https://github.com/denehoffman/rustitude/compare/rustitude-core-v4.1.0...rustitude-core-v5.0.0) - 2024-07-23 ### Added diff --git a/crates/rustitude-core/Cargo.toml b/crates/rustitude-core/Cargo.toml index 584e6e1..c37ac6f 100644 --- a/crates/rustitude-core/Cargo.toml +++ b/crates/rustitude-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustitude-core" -version = "5.0.0" +version = "6.0.0" edition = { workspace = true } authors = { workspace = true } description = { workspace = true } diff --git a/crates/rustitude/CHANGELOG.md b/crates/rustitude/CHANGELOG.md index 0debebc..d710d1a 100644 --- a/crates/rustitude/CHANGELOG.md +++ b/crates/rustitude/CHANGELOG.md @@ -5,6 +5,11 @@ 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.2](https://github.com/denehoffman/rustitude/compare/rustitude-v0.9.1...rustitude-v0.9.2) - 2024-07-23 + +### Added +- remove duplicate methods for loading data and replace with enum + ## [0.9.1](https://github.com/denehoffman/rustitude/compare/rustitude-v0.9.0...rustitude-v0.9.1) - 2024-07-23 ### Added diff --git a/py-rustitude/CHANGELOG.md b/py-rustitude/CHANGELOG.md index 203dc3d..24e2853 100644 --- a/py-rustitude/CHANGELOG.md +++ b/py-rustitude/CHANGELOG.md @@ -5,6 +5,16 @@ 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.2](https://github.com/denehoffman/rustitude/compare/py-rustitude-v0.9.1...py-rustitude-v0.9.2) - 2024-07-23 + +### Added +- add python API for adding `Dataset`s +- add methods to allow EPS to be calculated from polarization angle and magnitude +- remove duplicate methods for loading data and replace with enum + +### Fixed +- resolve some errors in `__init__.py` + ## [0.9.1](https://github.com/denehoffman/rustitude/compare/py-rustitude-v0.9.0...py-rustitude-v0.9.1) - 2024-07-23 ### Added