Skip to content

Commit 2c72ef9

Browse files
lox-release-plz[bot]helgee
authored andcommitted
chore: release
1 parent 43c1ad2 commit 2c72ef9

File tree

27 files changed

+333
-36
lines changed

27 files changed

+333
-36
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: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ 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.10" }
21+
lox-bodies = { path = "crates/lox-bodies", version = "0.1.0-alpha.11" }
2222
lox-core = { path = "crates/lox-core", version = "0.1.0-alpha.0" }
23-
lox-derive = { path = "crates/lox-derive", version = "0.1.0-alpha.4" }
24-
lox-earth = { path = "crates/lox-earth", version = "0.1.0-alpha.12" }
25-
lox-ephem = { path = "crates/lox-ephem", version = "0.1.0-alpha.7" }
26-
lox-frames = { path = "crates/lox-frames", version = "0.1.0-alpha.3" }
27-
lox-io = { path = "crates/lox-io", version = "0.1.0-alpha.8" }
28-
lox-math = { path = "crates/lox-math", version = "0.1.0-alpha.8" }
29-
lox-orbits = { path = "crates/lox-orbits", version = "0.1.0-alpha.20" }
30-
lox-space = { path = "crates/lox-space", version = "0.1.0-alpha.27" }
31-
lox-test-utils = { path = "crates/lox-test-utils", version = "0.1.0-alpha.0"}
32-
lox-time = { path = "crates/lox-time", version = "0.1.0-alpha.10" }
33-
lox-units = { path = "crates/lox-units", version = "0.1.0-alpha.0" }
23+
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-space = { path = "crates/lox-space", version = "0.1.0-alpha.28" }
31+
lox-test-utils = { path = "crates/lox-test-utils", version = "0.1.0-alpha.1" }
32+
lox-time = { path = "crates/lox-time", version = "0.1.0-alpha.11" }
33+
lox-units = { path = "crates/lox-units", version = "0.1.0-alpha.1" }
3434

3535
csv = "1.3.1"
3636
divan = "0.1.14"

crates/lox-bodies/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,25 @@ 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-bodies-v0.1.0-alpha.10...lox-bodies-v0.1.0-alpha.11) - 2025-10-29
10+
11+
### Added
12+
13+
- *(lox-units)* extend and document `lox_units::units` module
14+
15+
### Other
16+
17+
- move lox-units code to lox-core
18+
- *(lox-units)* restructure constants to match std
19+
- update SPDX headers and add helper script
20+
- make Lox REUSE-compliant
21+
- get rid of float_eq and lox_math::is_close
22+
- *(lox-units)* make Angle value private
23+
- *(lox-bodies/lox-earth)* anglify lox-bodies and lox-earth
24+
- move type aliases to lox-units
25+
- refactor all the things
26+
- *(lox-units/lox-math)* move constants to lox-units
27+
928
## [0.1.0-alpha.10](https://github.com/lox-space/lox/compare/lox-bodies-v0.1.0-alpha.9...lox-bodies-v0.1.0-alpha.10) - 2025-09-19
1029

1130
### Other

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.10"
9+
version = "0.1.0-alpha.11"
1010
rust-version.workspace = true
1111
edition.workspace = true
1212
license.workspace = true

crates/lox-core/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.1.0-alpha.0](https://github.com/lox-space/lox/releases/tag/lox-core-v0.1.0-alpha.0) - 2025-10-29
11+
12+
### Fixed
13+
14+
- fix doctests
15+
16+
### Other
17+
18+
- move time primitives to lox-core
19+
- move math code to lox-core
20+
- move lox-units code to lox-core

crates/lox-derive/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,20 @@ 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-derive-v0.1.0-alpha.4...lox-derive-v0.1.0-alpha.5) - 2025-10-29
10+
11+
### Added
12+
13+
- *(lox-test-utils)* add ApproxEq derive macro
14+
- *(lox-derive)* implement OffsetProvider derive macro
15+
16+
### Other
17+
18+
- update SPDX headers and add helper script
19+
- make Lox REUSE-compliant
20+
- get rid of float_eq and lox_math::is_close
21+
- *(lox-units)* make Angle value private
22+
923
## [0.1.0-alpha.4](https://github.com/lox-space/lox/compare/lox-derive-v0.1.0-alpha.3...lox-derive-v0.1.0-alpha.4) - 2025-07-01
1024

1125
### Other

crates/lox-derive/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-derive"
88
description = "Derive macros for the Lox ecosystem"
9-
version = "0.1.0-alpha.4"
9+
version = "0.1.0-alpha.5"
1010
rust-version.workspace = true
1111
edition.workspace = true
1212
license.workspace = true

crates/lox-earth/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [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
10+
11+
### Added
12+
13+
- *(lox-time)* add attosecond-resolution deltas
14+
- *(lox-units)* extend and document `lox_units::units` module
15+
- *(lox-derive)* implement OffsetProvider derive macro
16+
- add lox-test-utils crate and refine EOP parser interface
17+
- *(lox-earth)* implement new EOP parser and data provider
18+
19+
### Fixed
20+
21+
- fix formatting and use stable rustfmt
22+
23+
### Other
24+
25+
- move lox-units code to lox-core
26+
- *(lox-units)* restructure constants to match std
27+
- add 3rd-party data licenses
28+
- update SPDX headers and add helper script
29+
- make Lox REUSE-compliant
30+
- get rid of float_eq and lox_math::is_close
31+
- *(lox-units)* make Angle value private
32+
- *(lox-bodies/lox-earth)* anglify lox-bodies and lox-earth
33+
- start reimplementation of frame transformations
34+
- *(lox-earth)* add comment
35+
- move type aliases to lox-units
36+
- *(lox-units/lox-math)* move constants to lox-units
37+
938
## [0.1.0-alpha.12](https://github.com/lox-space/lox/compare/lox-earth-v0.1.0-alpha.11...lox-earth-v0.1.0-alpha.12) - 2025-09-19
1039

1140
### Other

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.12"
9+
version = "0.1.0-alpha.13"
1010
rust-version.workspace = true
1111
edition.workspace = true
1212
license.workspace = true

crates/lox-ephem/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [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
10+
11+
### Other
12+
13+
- move lox-units code to lox-core
14+
- update SPDX headers and add helper script
15+
- make Lox REUSE-compliant
16+
- move type aliases to lox-units
17+
- refactor all the things
18+
919
## [0.1.0-alpha.7](https://github.com/lox-space/lox/compare/lox-ephem-v0.1.0-alpha.6...lox-ephem-v0.1.0-alpha.7) - 2025-09-19
1020

1121
### Other

0 commit comments

Comments
 (0)