Skip to content

Commit 03a4556

Browse files
chore: release
1 parent 1dfa01c commit 03a4556

File tree

26 files changed

+107
-35
lines changed

26 files changed

+107
-35
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@ repository = "https://github.com/lox-space/lox"
1818
keywords = ["lox", "astrodynamics", "orbital-dynamics", "mission-analysis"]
1919

2020
[workspace.dependencies]
21-
lox-bodies = { path = "crates/lox-bodies", version = "0.1.0-alpha.11" }
22-
lox-core = { path = "crates/lox-core", version = "0.1.0-alpha.0" }
21+
lox-bodies = { path = "crates/lox-bodies", version = "0.1.0-alpha.12" }
22+
lox-core = { path = "crates/lox-core", version = "0.1.0-alpha.1" }
2323
lox-derive = { path = "crates/lox-derive", version = "0.1.0-alpha.5" }
24-
lox-earth = { path = "crates/lox-earth", version = "0.1.0-alpha.13" }
25-
lox-ephem = { path = "crates/lox-ephem", version = "0.1.0-alpha.8" }
26-
lox-frames = { path = "crates/lox-frames", version = "0.1.0-alpha.4" }
27-
lox-io = { path = "crates/lox-io", version = "0.1.0-alpha.9" }
28-
lox-math = { path = "crates/lox-math", version = "0.1.0-alpha.9" }
29-
lox-orbits = { path = "crates/lox-orbits", version = "0.1.0-alpha.21" }
30-
lox-test-utils = { path = "crates/lox-test-utils", version = "0.1.0-alpha.1" }
31-
lox-time = { path = "crates/lox-time", version = "0.1.0-alpha.11" }
32-
lox-units = { path = "crates/lox-units", version = "0.1.0-alpha.1" }
24+
lox-earth = { path = "crates/lox-earth", version = "0.1.0-alpha.14" }
25+
lox-ephem = { path = "crates/lox-ephem", version = "0.1.0-alpha.9" }
26+
lox-frames = { path = "crates/lox-frames", version = "0.1.0-alpha.5" }
27+
lox-io = { path = "crates/lox-io", version = "0.1.0-alpha.10" }
28+
lox-math = { path = "crates/lox-math", version = "0.1.0-alpha.10" }
29+
lox-orbits = { path = "crates/lox-orbits", version = "0.1.0-alpha.22" }
30+
lox-test-utils = { path = "crates/lox-test-utils", version = "0.1.0-alpha.2" }
31+
lox-time = { path = "crates/lox-time", version = "0.1.0-alpha.12" }
32+
lox-units = { path = "crates/lox-units", version = "0.1.0-alpha.2" }
3333

3434
csv = "1.4.0"
3535
divan = "0.1.21"

crates/lox-bodies/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.12](https://github.com/lox-space/lox/compare/lox-bodies-v0.1.0-alpha.11...lox-bodies-v0.1.0-alpha.12) - 2025-11-01
10+
11+
### Other
12+
13+
- updated the following local packages: lox-test-utils, lox-core, lox-math, lox-units
14+
915
## [0.1.0-alpha.11](https://github.com/lox-space/lox/compare/lox-bodies-v0.1.0-alpha.10...lox-bodies-v0.1.0-alpha.11) - 2025-10-29
1016

1117
### Added

crates/lox-bodies/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[package]
77
name = "lox-bodies"
88
description = "Celestial body definitions for the Lox ecosystem"
9-
version = "0.1.0-alpha.11"
9+
version = "0.1.0-alpha.12"
1010
rust-version.workspace = true
1111
edition.workspace = true
1212
license.workspace = true

crates/lox-core/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.1.0-alpha.1](https://github.com/lox-space/lox/compare/lox-core-v0.1.0-alpha.0...lox-core-v0.1.0-alpha.1) - 2025-11-01
11+
12+
### Added
13+
14+
- add SSO builder and Earth ephemeris
15+
1016
## [0.1.0-alpha.0](https://github.com/lox-space/lox/releases/tag/lox-core-v0.1.0-alpha.0) - 2025-10-29
1117

1218
### Fixed

crates/lox-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[package]
66
name = "lox-core"
77
description = "Common data types and utilities for the Lox Astrodynamics Toolkit"
8-
version = "0.1.0-alpha.0"
8+
version = "0.1.0-alpha.1"
99
rust-version.workspace = true
1010
edition.workspace = true
1111
license.workspace = true

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.14](https://github.com/lox-space/lox/compare/lox-earth-v0.1.0-alpha.13...lox-earth-v0.1.0-alpha.14) - 2025-11-01
10+
11+
### Added
12+
13+
- add SSO builder and Earth ephemeris
14+
915
## [0.1.0-alpha.13](https://github.com/lox-space/lox/compare/lox-earth-v0.1.0-alpha.12...lox-earth-v0.1.0-alpha.13) - 2025-10-29
1016

1117
### Added

crates/lox-earth/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[package]
77
name = "lox-earth"
88
description = "Tools for Earth-based astrodynamics for the Lox ecosystem"
9-
version = "0.1.0-alpha.13"
9+
version = "0.1.0-alpha.14"
1010
rust-version.workspace = true
1111
edition.workspace = true
1212
license.workspace = true

crates/lox-ephem/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.9](https://github.com/lox-space/lox/compare/lox-ephem-v0.1.0-alpha.8...lox-ephem-v0.1.0-alpha.9) - 2025-11-01
10+
11+
### Other
12+
13+
- updated the following local packages: lox-core, lox-units
14+
915
## [0.1.0-alpha.8](https://github.com/lox-space/lox/compare/lox-ephem-v0.1.0-alpha.7...lox-ephem-v0.1.0-alpha.8) - 2025-10-29
1016

1117
### Other

crates/lox-ephem/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[package]
77
name = "lox-ephem"
88
description = "Ephemerides for the Lox ecosystem"
9-
version = "0.1.0-alpha.8"
9+
version = "0.1.0-alpha.9"
1010
rust-version.workspace = true
1111
edition.workspace = true
1212
license.workspace = true

0 commit comments

Comments
 (0)