Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
denehoffman authored Jan 28, 2025
1 parent 82a11df commit d114206
Show file tree
Hide file tree
Showing 13 changed files with 70 additions and 11 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ shellexpand = "3.1.0"
thiserror = "2.0.3"
typetag = "0.2.18"

laddu = { version = "0.2.5", path = "crates/laddu" }
laddu-core = { version = "0.2.4", path = "crates/laddu-core" }
laddu-amplitudes = { version = "0.2.4", path = "crates/laddu-amplitudes" }
laddu-extensions = { version = "0.2.5", path = "crates/laddu-extensions" }
laddu-python = { version = "0.2.4", path = "crates/laddu-python" }
laddu = { version = "0.2.6", path = "crates/laddu" }
laddu-core = { version = "0.2.5", path = "crates/laddu-core" }
laddu-amplitudes = { version = "0.2.5", path = "crates/laddu-amplitudes" }
laddu-extensions = { version = "0.2.6", path = "crates/laddu-extensions" }
laddu-python = { version = "0.2.5", path = "crates/laddu-python" }

[profile.release]
lto = "thin"
Expand Down
6 changes: 6 additions & 0 deletions crates/laddu-amplitudes/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.5](https://github.com/denehoffman/laddu/compare/laddu-amplitudes-v0.2.4...laddu-amplitudes-v0.2.5) - 2025-01-28

### Other

- updated the following local packages: laddu-core, laddu-python

## [0.2.4](https://github.com/denehoffman/laddu/compare/laddu-amplitudes-v0.2.3...laddu-amplitudes-v0.2.4) - 2025-01-27

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/laddu-amplitudes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "laddu-amplitudes"
version = "0.2.4"
version = "0.2.5"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/laddu-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.5](https://github.com/denehoffman/laddu/compare/laddu-core-v0.2.4...laddu-core-v0.2.5) - 2025-01-28

### Other

- update Cargo.toml dependencies

## [0.2.4](https://github.com/denehoffman/laddu/compare/laddu-core-v0.2.3...laddu-core-v0.2.4) - 2025-01-27

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion crates/laddu-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "laddu-core"
version = "0.2.4"
version = "0.2.5"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
Expand Down
11 changes: 11 additions & 0 deletions crates/laddu-extensions/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.6](https://github.com/denehoffman/laddu/compare/laddu-extensions-v0.2.5...laddu-extensions-v0.2.6) - 2025-01-28

### Added

- bump `ganesh` to add "skip_hessian" minimization option to skip calculation of Hessian matrix

### Fixed

- use proper ownership in setting algorithm error mode
- use correct enum in L-BFGS-B error method

## [0.2.5](https://github.com/denehoffman/laddu/compare/laddu-extensions-v0.2.4...laddu-extensions-v0.2.5) - 2025-01-27

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/laddu-extensions/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "laddu-extensions"
version = "0.2.5"
version = "0.2.6"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/laddu-python/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.5](https://github.com/denehoffman/laddu/compare/laddu-python-v0.2.4...laddu-python-v0.2.5) - 2025-01-28

### Other

- update Cargo.toml dependencies

## [0.2.4](https://github.com/denehoffman/laddu/compare/laddu-python-v0.2.3...laddu-python-v0.2.4) - 2025-01-27

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/laddu-python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "laddu-python"
version = "0.2.4"
version = "0.2.5"
description = "Amplitude analysis made short and sweet"
edition.workspace = true
authors.workspace = true
Expand Down
15 changes: 15 additions & 0 deletions crates/laddu/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.6](https://github.com/denehoffman/laddu/compare/laddu-v0.2.5...laddu-v0.2.6) - 2025-01-28

### Added

- bump `ganesh` to add "skip_hessian" minimization option to skip calculation of Hessian matrix

### Fixed

- use proper ownership in setting algorithm error mode
- use correct enum in L-BFGS-B error method

### Other

- update Cargo.toml dependencies

## [0.2.5](https://github.com/denehoffman/laddu/compare/laddu-v0.2.4...laddu-v0.2.5) - 2025-01-27

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion crates/laddu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "laddu"
version = "0.2.5"
version = "0.2.6"
description = "Amplitude analysis made short and sweet"
documentation = "https://docs.rs/laddu"
edition.workspace = true
Expand Down
15 changes: 15 additions & 0 deletions py-laddu/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.6](https://github.com/denehoffman/laddu/compare/py-laddu-v0.2.5...py-laddu-v0.2.6) - 2025-01-28

### Added

- bump `ganesh` to add "skip_hessian" minimization option to skip calculation of Hessian matrix

### Fixed

- use proper ownership in setting algorithm error mode
- use correct enum in L-BFGS-B error method

### Other

- update Cargo.toml dependencies

## [0.2.5](https://github.com/denehoffman/laddu/compare/py-laddu-v0.2.4...py-laddu-v0.2.5) - 2025-01-27

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion py-laddu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "py-laddu"
version = "0.2.5"
version = "0.2.6"
edition.workspace = true
readme = "README.md"
license.workspace = true
Expand Down

0 comments on commit d114206

Please sign in to comment.