Skip to content

Commit 4493ac9

Browse files
lox-release-plz[bot]helgee
authored andcommitted
chore: release
1 parent 3bf494d commit 4493ac9

File tree

10 files changed

+36
-12
lines changed

10 files changed

+36
-12
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ repository = "https://github.com/lox-space/lox"
1313
[workspace.dependencies]
1414
lox-bodies = { path = "crates/lox-bodies", version = "0.1.0-alpha.6" }
1515
lox-derive = { path = "crates/lox-derive", version = "0.1.0-alpha.1" }
16-
lox-earth = { path = "crates/lox-earth", version = "0.1.0-alpha.6" }
16+
lox-earth = { path = "crates/lox-earth", version = "0.1.0-alpha.7" }
1717
lox-ephem = { path = "crates/lox-ephem", version = "0.1.0-alpha.3" }
1818
lox-io = { path = "crates/lox-io", version = "0.1.0-alpha.4" }
1919
lox-math = { path = "crates/lox-math", version = "0.1.0-alpha.4" }
20-
lox-orbits = { path = "crates/lox-orbits", version = "0.1.0-alpha.10" }
21-
lox-space = { path = "crates/lox-space", version = "0.1.0-alpha.16" }
22-
lox-time = { path = "crates/lox-time", version = "0.1.0-alpha.4" }
20+
lox-orbits = { path = "crates/lox-orbits", version = "0.1.0-alpha.11" }
21+
lox-space = { path = "crates/lox-space", version = "0.1.0-alpha.17" }
22+
lox-time = { path = "crates/lox-time", version = "0.1.0-alpha.5" }
2323

2424
csv = "1.3.0"
2525
dyn-clone = "1.0.17"

crates/lox-earth/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.1.0-alpha.7](https://github.com/lox-space/lox/compare/lox-earth-v0.1.0-alpha.6...lox-earth-v0.1.0-alpha.7) - 2025-02-11
10+
11+
### Other
12+
13+
- updated the following local packages: lox-time
14+
915
## [0.1.0-alpha.6](https://github.com/lox-space/lox/compare/lox-earth-v0.1.0-alpha.5...lox-earth-v0.1.0-alpha.6) - 2025-02-10
1016

1117
### Other

crates/lox-earth/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "lox-earth"
33
description = "Tools for Earth-based astrodynamics for the Lox ecosystem"
4-
version = "0.1.0-alpha.6"
4+
version = "0.1.0-alpha.7"
55
rust-version.workspace = true
66
edition.workspace = true
77
license.workspace = true

crates/lox-orbits/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.1.0-alpha.11](https://github.com/lox-space/lox/compare/lox-orbits-v0.1.0-alpha.10...lox-orbits-v0.1.0-alpha.11) - 2025-02-11
10+
11+
### Fixed
12+
13+
- make `Time` and `TimeScale` pickable
14+
915
## [0.1.0-alpha.10](https://github.com/lox-space/lox/compare/lox-orbits-v0.1.0-alpha.9...lox-orbits-v0.1.0-alpha.10) - 2025-02-10
1016

1117
### Other

crates/lox-orbits/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "lox-orbits"
33
description = "Spacecraft orbit modelling tools for the Lox ecosystem"
4-
version = "0.1.0-alpha.10"
4+
version = "0.1.0-alpha.11"
55
rust-version.workspace = true
66
edition.workspace = true
77
license.workspace = true

crates/lox-space/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.1.0-alpha.17](https://github.com/lox-space/lox/compare/lox-space-v0.1.0-alpha.16...lox-space-v0.1.0-alpha.17) - 2025-02-11
10+
11+
### Fixed
12+
13+
- make `Time` and `TimeScale` pickable
14+
915
## [0.1.0-alpha.16](https://github.com/lox-space/lox/compare/lox-space-v0.1.0-alpha.15...lox-space-v0.1.0-alpha.16) - 2025-02-10
1016

1117
### Other

crates/lox-space/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "lox-space"
33
description = "The Lox toolbox for space mission analysis and design"
4-
version = "0.1.0-alpha.16"
4+
version = "0.1.0-alpha.17"
55
rust-version.workspace = true
66
edition.workspace = true
77
license.workspace = true

crates/lox-time/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.1.0-alpha.5](https://github.com/lox-space/lox/compare/lox-time-v0.1.0-alpha.4...lox-time-v0.1.0-alpha.5) - 2025-02-11
10+
11+
### Fixed
12+
13+
- make `Time` and `TimeScale` pickable
14+
915
## [0.1.0-alpha.4](https://github.com/lox-space/lox/compare/lox-time-v0.1.0-alpha.3...lox-time-v0.1.0-alpha.4) - 2025-02-10
1016

1117
### Other

crates/lox-time/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "lox-time"
33
description = "Time modelling tools for the Lox ecosystem"
4-
version = "0.1.0-alpha.4"
4+
version = "0.1.0-alpha.5"
55
rust-version.workspace = true
66
edition.workspace = true
77
license.workspace = true

0 commit comments

Comments
 (0)