diff --git a/Cargo.lock b/Cargo.lock index d67ea873..69909681 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -533,7 +533,7 @@ dependencies = [ [[package]] name = "lox-math" -version = "0.1.0-alpha.0" +version = "0.1.0-alpha.1" dependencies = [ "fast_polynomial", "float_eq", @@ -563,7 +563,7 @@ dependencies = [ [[package]] name = "lox-space" -version = "0.1.0-alpha.0" +version = "0.1.0-alpha.1" dependencies = [ "divan", "lox-bodies", diff --git a/Cargo.toml b/Cargo.toml index 53ae84e7..ae1bfad4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,9 +16,9 @@ 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.0" } +lox-math = { path = "crates/lox-math", version = "0.1.0-alpha.1" } lox-orbits = { path = "crates/lox-orbits", version = "0.1.0-alpha.0" } -lox-space = { path = "crates/lox-space", version = "0.1.0-alpha.0" } +lox-space = { path = "crates/lox-space", version = "0.1.0-alpha.1" } lox-time = { path = "crates/lox-time", version = "0.1.0-alpha.0" } csv = "1.3.0" diff --git a/crates/lox-math/CHANGELOG.md b/crates/lox-math/CHANGELOG.md index 699f5d9d..2d2b03a8 100644 --- a/crates/lox-math/CHANGELOG.md +++ b/crates/lox-math/CHANGELOG.md @@ -6,6 +6,11 @@ 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-math-v0.1.0-alpha.0...lox-math-v0.1.0-alpha.1) - 2024-07-19 + +### Other +- release ([#144](https://github.com/lox-space/lox/pull/144)) + ## [0.1.0-alpha.0](https://github.com/lox-space/lox/releases/tag/lox-math-v0.1.0-alpha.0) - 2024-07-19 ### Other diff --git a/crates/lox-math/Cargo.toml b/crates/lox-math/Cargo.toml index 171f8f63..1b95eae1 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.0" +version = "0.1.0-alpha.1" 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 9b2f6f2a..bf50aa8f 100644 --- a/crates/lox-space/CHANGELOG.md +++ b/crates/lox-space/CHANGELOG.md @@ -6,6 +6,11 @@ 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-space-v0.1.0-alpha.0...lox-space-v0.1.0-alpha.1) - 2024-07-19 + +### Other +- Use GitHub app for release workflow ([#150](https://github.com/lox-space/lox/pull/150)) + ## [0.1.0-alpha.0](https://github.com/lox-space/lox/releases/tag/lox-space-v0.1.0-alpha.0) - 2024-07-19 ### Other diff --git a/crates/lox-space/Cargo.toml b/crates/lox-space/Cargo.toml index 02a49ee1..ce620ff3 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.0" +version = "0.1.0-alpha.1" rust-version.workspace = true edition.workspace = true license.workspace = true