From 79df069b8f165790a57bb8bb91be875cc687db9e Mon Sep 17 00:00:00 2001 From: "lox-release-plz[bot]" <176070181+lox-release-plz[bot]@users.noreply.github.com> Date: Tue, 12 Nov 2024 20:52:33 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 16 ++++++++-------- Cargo.toml | 16 ++++++++-------- crates/lox-bodies/CHANGELOG.md | 6 ++++++ crates/lox-bodies/Cargo.toml | 2 +- crates/lox-earth/CHANGELOG.md | 6 ++++++ crates/lox-earth/Cargo.toml | 2 +- crates/lox-ephem/CHANGELOG.md | 7 +++++++ crates/lox-ephem/Cargo.toml | 2 +- crates/lox-io/CHANGELOG.md | 7 +++++++ crates/lox-io/Cargo.toml | 2 +- crates/lox-math/CHANGELOG.md | 6 ++++++ crates/lox-math/Cargo.toml | 2 +- crates/lox-orbits/CHANGELOG.md | 13 +++++++++++++ crates/lox-orbits/Cargo.toml | 2 +- crates/lox-space/CHANGELOG.md | 6 ++++++ crates/lox-space/Cargo.toml | 2 +- crates/lox-time/CHANGELOG.md | 7 +++++++ crates/lox-time/Cargo.toml | 2 +- 18 files changed, 82 insertions(+), 24 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dc0ec120..b05b4a31 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -463,7 +463,7 @@ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" [[package]] name = "lox-bodies" -version = "0.1.0-alpha.0" +version = "0.1.0-alpha.1" dependencies = [ "dyn-clone", "fast_polynomial", @@ -485,7 +485,7 @@ dependencies = [ [[package]] name = "lox-earth" -version = "0.1.0-alpha.0" +version = "0.1.0-alpha.1" dependencies = [ "fast_polynomial", "float_eq", @@ -500,7 +500,7 @@ dependencies = [ [[package]] name = "lox-ephem" -version = "0.1.0-alpha.0" +version = "0.1.0-alpha.1" dependencies = [ "lox-math", "nom", @@ -511,7 +511,7 @@ dependencies = [ [[package]] name = "lox-io" -version = "0.1.0-alpha.0" +version = "0.1.0-alpha.1" dependencies = [ "csv", "lox-derive", @@ -528,7 +528,7 @@ dependencies = [ [[package]] name = "lox-math" -version = "0.1.0-alpha.1" +version = "0.1.0-alpha.2" dependencies = [ "fast_polynomial", "float_eq", @@ -540,7 +540,7 @@ dependencies = [ [[package]] name = "lox-orbits" -version = "0.1.0-alpha.1" +version = "0.1.0-alpha.2" dependencies = [ "csv", "float_eq", @@ -559,7 +559,7 @@ dependencies = [ [[package]] name = "lox-space" -version = "0.1.0-alpha.2" +version = "0.1.0-alpha.3" dependencies = [ "divan", "lox-bodies", @@ -572,7 +572,7 @@ dependencies = [ [[package]] name = "lox-time" -version = "0.1.0-alpha.0" +version = "0.1.0-alpha.1" dependencies = [ "float_eq", "itertools", diff --git a/Cargo.toml b/Cargo.toml index 711d460d..5b36aeda 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,15 +11,15 @@ authors = ["Helge Eichhorn and the lox-space contributors"] repository = "https://github.com/lox-space/lox" [workspace.dependencies] -lox-bodies = { path = "crates/lox-bodies", version = "0.1.0-alpha.0" } +lox-bodies = { path = "crates/lox-bodies", version = "0.1.0-alpha.1" } lox-derive = { path = "crates/lox-derive", version = "0.1.0-alpha.0" } -lox-earth = { path = "crates/lox-earth", version = "0.1.0-alpha.0" } -lox-ephem = { path = "crates/lox-ephem", version = "0.1.0-alpha.0" } -lox-io = { path = "crates/lox-io", version = "0.1.0-alpha.0" } -lox-math = { path = "crates/lox-math", version = "0.1.0-alpha.1" } -lox-orbits = { path = "crates/lox-orbits", version = "0.1.0-alpha.1" } -lox-space = { path = "crates/lox-space", version = "0.1.0-alpha.2" } -lox-time = { path = "crates/lox-time", version = "0.1.0-alpha.0" } +lox-earth = { path = "crates/lox-earth", version = "0.1.0-alpha.1" } +lox-ephem = { path = "crates/lox-ephem", version = "0.1.0-alpha.1" } +lox-io = { path = "crates/lox-io", version = "0.1.0-alpha.1" } +lox-math = { path = "crates/lox-math", version = "0.1.0-alpha.2" } +lox-orbits = { path = "crates/lox-orbits", version = "0.1.0-alpha.2" } +lox-space = { path = "crates/lox-space", version = "0.1.0-alpha.3" } +lox-time = { path = "crates/lox-time", version = "0.1.0-alpha.1" } csv = "1.3.0" divan = "0.1.14" diff --git a/crates/lox-bodies/CHANGELOG.md b/crates/lox-bodies/CHANGELOG.md index d0bf60dc..527915fd 100644 --- a/crates/lox-bodies/CHANGELOG.md +++ b/crates/lox-bodies/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.0-alpha.1](https://github.com/lox-space/lox/compare/lox-bodies-v0.1.0-alpha.0...lox-bodies-v0.1.0-alpha.1) - 2024-11-12 + +### Other + +- update Cargo.toml dependencies + ## [0.1.0-alpha.0](https://github.com/lox-space/lox/releases/tag/lox-bodies-v0.1.0-alpha.0) - 2024-07-19 ### Other diff --git a/crates/lox-bodies/Cargo.toml b/crates/lox-bodies/Cargo.toml index 866a3090..dde2f74e 100644 --- a/crates/lox-bodies/Cargo.toml +++ b/crates/lox-bodies/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lox-bodies" description = "Celestial body definitions for the Lox ecosystem" -version = "0.1.0-alpha.0" +version = "0.1.0-alpha.1" rust-version.workspace = true edition.workspace = true license.workspace = true diff --git a/crates/lox-earth/CHANGELOG.md b/crates/lox-earth/CHANGELOG.md index b66ab847..3ac5c7d8 100644 --- a/crates/lox-earth/CHANGELOG.md +++ b/crates/lox-earth/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.0-alpha.1](https://github.com/lox-space/lox/compare/lox-earth-v0.1.0-alpha.0...lox-earth-v0.1.0-alpha.1) - 2024-11-12 + +### Other + +- updated the following local packages: lox-bodies, lox-math, lox-io, lox-time + ## [0.1.0-alpha.0](https://github.com/lox-space/lox/releases/tag/lox-earth-v0.1.0-alpha.0) - 2024-07-19 ### Other diff --git a/crates/lox-earth/Cargo.toml b/crates/lox-earth/Cargo.toml index 3f583049..aa465b41 100644 --- a/crates/lox-earth/Cargo.toml +++ b/crates/lox-earth/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lox-earth" description = "Tools for Earth-based astrodynamics for the Lox ecosystem" -version = "0.1.0-alpha.0" +version = "0.1.0-alpha.1" rust-version.workspace = true edition.workspace = true license.workspace = true diff --git a/crates/lox-ephem/CHANGELOG.md b/crates/lox-ephem/CHANGELOG.md index f29330d8..484ee51a 100644 --- a/crates/lox-ephem/CHANGELOG.md +++ b/crates/lox-ephem/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.0-alpha.1](https://github.com/lox-space/lox/compare/lox-ephem-v0.1.0-alpha.0...lox-ephem-v0.1.0-alpha.1) - 2024-11-12 + +### Added + +- *(lox-orbits)* implement frame and origin change for Python classes +- *(lox-orbits)* implement origin change for `State` + ## [0.1.0-alpha.0](https://github.com/lox-space/lox/releases/tag/lox-ephem-v0.1.0-alpha.0) - 2024-07-19 ### Other diff --git a/crates/lox-ephem/Cargo.toml b/crates/lox-ephem/Cargo.toml index 82079f2e..94641b61 100644 --- a/crates/lox-ephem/Cargo.toml +++ b/crates/lox-ephem/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lox-ephem" description = "Ephemerides for the Lox ecosystem" -version = "0.1.0-alpha.0" +version = "0.1.0-alpha.1" rust-version.workspace = true edition.workspace = true license.workspace = true diff --git a/crates/lox-io/CHANGELOG.md b/crates/lox-io/CHANGELOG.md index 2bd6778f..b439d3fa 100644 --- a/crates/lox-io/CHANGELOG.md +++ b/crates/lox-io/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.0-alpha.1](https://github.com/lox-space/lox/compare/lox-io-v0.1.0-alpha.0...lox-io-v0.1.0-alpha.1) - 2024-11-12 + +### Other + +- fix clippy lints +- *(lox-io)* remove fast-float due to security advisory + ## [0.1.0-alpha.0](https://github.com/lox-space/lox/releases/tag/lox-io-v0.1.0-alpha.0) - 2024-07-19 ### Other diff --git a/crates/lox-io/Cargo.toml b/crates/lox-io/Cargo.toml index 94dba76a..72dc2a73 100644 --- a/crates/lox-io/Cargo.toml +++ b/crates/lox-io/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lox-io" description = "Interfaces for industry-standard astrodynamics file formats for the Lox ecosystem" -version = "0.1.0-alpha.0" +version = "0.1.0-alpha.1" rust-version.workspace = true edition.workspace = true license.workspace = true diff --git a/crates/lox-math/CHANGELOG.md b/crates/lox-math/CHANGELOG.md index 2d2b03a8..9f458561 100644 --- a/crates/lox-math/CHANGELOG.md +++ b/crates/lox-math/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.0-alpha.2](https://github.com/lox-space/lox/compare/lox-math-v0.1.0-alpha.1...lox-math-v0.1.0-alpha.2) - 2024-11-12 + +### Other + +- update Cargo.toml dependencies + ## [0.1.0-alpha.1](https://github.com/lox-space/lox/compare/lox-math-v0.1.0-alpha.0...lox-math-v0.1.0-alpha.1) - 2024-07-19 ### Other diff --git a/crates/lox-math/Cargo.toml b/crates/lox-math/Cargo.toml index 1b95eae1..f6a0484e 100644 --- a/crates/lox-math/Cargo.toml +++ b/crates/lox-math/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lox-math" description = "Mathematical utilities for the Lox ecosystem" -version = "0.1.0-alpha.1" +version = "0.1.0-alpha.2" rust-version.workspace = true edition.workspace = true license.workspace = true diff --git a/crates/lox-orbits/CHANGELOG.md b/crates/lox-orbits/CHANGELOG.md index 4ccdfa16..795c7114 100644 --- a/crates/lox-orbits/CHANGELOG.md +++ b/crates/lox-orbits/CHANGELOG.md @@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.0-alpha.2](https://github.com/lox-space/lox/compare/lox-orbits-v0.1.0-alpha.1...lox-orbits-v0.1.0-alpha.2) - 2024-11-12 + +### Added + +- *(lox-orbits)* implement frame and origin change for Python classes +- *(lox-orbits)* implement origin change for `State` + +### Other + +- fix formatting +- fix clippy lints +- update pyo3 and fix deprecations + ## [0.1.0-alpha.1](https://github.com/lox-space/lox/compare/lox-orbits-v0.1.0-alpha.0...lox-orbits-v0.1.0-alpha.1) - 2024-07-19 ### Added diff --git a/crates/lox-orbits/Cargo.toml b/crates/lox-orbits/Cargo.toml index 8fbd32cd..ca35edd4 100644 --- a/crates/lox-orbits/Cargo.toml +++ b/crates/lox-orbits/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lox-orbits" description = "Spacecraft orbit modelling tools for the Lox ecosystem" -version = "0.1.0-alpha.1" +version = "0.1.0-alpha.2" rust-version.workspace = true edition.workspace = true license.workspace = true diff --git a/crates/lox-space/CHANGELOG.md b/crates/lox-space/CHANGELOG.md index 841759ba..7b70c49a 100644 --- a/crates/lox-space/CHANGELOG.md +++ b/crates/lox-space/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.0-alpha.3](https://github.com/lox-space/lox/compare/lox-space-v0.1.0-alpha.2...lox-space-v0.1.0-alpha.3) - 2024-11-12 + +### Added + +- *(lox-orbits)* implement frame and origin change for Python classes + ## [0.1.0-alpha.2](https://github.com/lox-space/lox/compare/lox-space-v0.1.0-alpha.1...lox-space-v0.1.0-alpha.2) - 2024-07-19 ### Added diff --git a/crates/lox-space/Cargo.toml b/crates/lox-space/Cargo.toml index c3fe7a2c..861065bf 100644 --- a/crates/lox-space/Cargo.toml +++ b/crates/lox-space/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lox-space" description = "The Lox toolbox for space mission analysis and design" -version = "0.1.0-alpha.2" +version = "0.1.0-alpha.3" rust-version.workspace = true edition.workspace = true license.workspace = true diff --git a/crates/lox-time/CHANGELOG.md b/crates/lox-time/CHANGELOG.md index e18c2b32..43ed426c 100644 --- a/crates/lox-time/CHANGELOG.md +++ b/crates/lox-time/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.0-alpha.1](https://github.com/lox-space/lox/compare/lox-time-v0.1.0-alpha.0...lox-time-v0.1.0-alpha.1) - 2024-11-12 + +### Other + +- fix clippy lints +- update pyo3 and fix deprecations + ## [0.1.0-alpha.0](https://github.com/lox-space/lox/releases/tag/lox-time-v0.1.0-alpha.0) - 2024-07-19 ### Other diff --git a/crates/lox-time/Cargo.toml b/crates/lox-time/Cargo.toml index 93e7dec2..cf1ebe4b 100644 --- a/crates/lox-time/Cargo.toml +++ b/crates/lox-time/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lox-time" description = "Time modelling tools for the Lox ecosystem" -version = "0.1.0-alpha.0" +version = "0.1.0-alpha.1" rust-version.workspace = true edition.workspace = true license.workspace = true