Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #24

Merged
merged 2 commits into from
Jul 30, 2024
Merged
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
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resolver = "2"
default-members = ["crates/*"]

[workspace.package]
version = "0.9.3"
version = "0.10.0"
edition = "2021"
authors = ["Nathaniel Dene Hoffman <[email protected]>"]
description = "A library to create and operate models for particle physics amplitude analyses"
Expand All @@ -13,8 +13,8 @@ homepage = "https://github.com/denehoffman/rustitude/"

[workspace.dependencies]
rustitude-core = { version = "7.0.0", path = "crates/rustitude-core" }
rustitude = { version = "0.9.3", path = "crates/rustitude" }
rustitude-gluex = { version = "0.4.9", path = "crates/rustitude-gluex" }
rustitude = { version = "0.10.0", path = "crates/rustitude" }
rustitude-gluex = { version = "0.5.0", path = "crates/rustitude-gluex" }
rayon = { version = "1.10.0" }
approx = { version = "0.5.1", features = ["num-complex"] }
nalgebra = "0.33.0"
Expand Down
6 changes: 6 additions & 0 deletions crates/rustitude-gluex/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.5.0](https://github.com/denehoffman/rustitude/compare/rustitude-gluex-v0.4.9...rustitude-gluex-v0.5.0) - 2024-07-30

### Added
- [**breaking**] add `Decay` enum to basically every amplitude to avoid hardcoding particle indices
- Add `Decay` enum to handle particle assignment (expandable in future) and make other enums into pyclasses

## [0.4.8](https://github.com/denehoffman/rustitude/compare/rustitude-gluex-v0.4.7...rustitude-gluex-v0.4.8) - 2024-07-23

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/rustitude-gluex/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustitude-gluex"
version = "0.4.9"
version = "0.5.0"
edition = { workspace = true }
authors = { workspace = true }
description = "GlueX Amplitudes for Rustitude"
Expand Down
5 changes: 5 additions & 0 deletions crates/rustitude/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.10.0](https://github.com/denehoffman/rustitude/compare/rustitude-v0.9.3...rustitude-v0.10.0) - 2024-07-30

### Added
- [**breaking**] add `Decay` enum to basically every amplitude to avoid hardcoding particle indices

## [0.9.2](https://github.com/denehoffman/rustitude/compare/rustitude-v0.9.1...rustitude-v0.9.2) - 2024-07-23

### Added
Expand Down
6 changes: 6 additions & 0 deletions py-rustitude/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.10.0](https://github.com/denehoffman/rustitude/compare/py-rustitude-v0.9.3...py-rustitude-v0.10.0) - 2024-07-30

### Added
- [**breaking**] add `Decay` enum to basically every amplitude to avoid hardcoding particle indices
- Add `Decay` enum to handle particle assignment (expandable in future) and make other enums into pyclasses

## [0.9.2](https://github.com/denehoffman/rustitude/compare/py-rustitude-v0.9.1...py-rustitude-v0.9.2) - 2024-07-23

### Added
Expand Down
2 changes: 1 addition & 1 deletion py-rustitude/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ features = ["pyo3/extension-module"]
name = "rustitude"
description = "Python bindings for the Rustitude library"
readme = "README.md"
version = "0.9.3"
version = "0.10.0"
requires-python = ">=3.7"
license = { file = "LICENSE" }
keywords = ["physics", "math", "rust"]
Expand Down
Loading