Skip to content

Commit 79df069

Browse files
lox-release-plz[bot]helgee
authored andcommitted
chore: release
1 parent ef9afd3 commit 79df069

File tree

18 files changed

+82
-24
lines changed

18 files changed

+82
-24
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ authors = ["Helge Eichhorn and the lox-space contributors"]
1111
repository = "https://github.com/lox-space/lox"
1212

1313
[workspace.dependencies]
14-
lox-bodies = { path = "crates/lox-bodies", version = "0.1.0-alpha.0" }
14+
lox-bodies = { path = "crates/lox-bodies", version = "0.1.0-alpha.1" }
1515
lox-derive = { path = "crates/lox-derive", version = "0.1.0-alpha.0" }
16-
lox-earth = { path = "crates/lox-earth", version = "0.1.0-alpha.0" }
17-
lox-ephem = { path = "crates/lox-ephem", version = "0.1.0-alpha.0" }
18-
lox-io = { path = "crates/lox-io", version = "0.1.0-alpha.0" }
19-
lox-math = { path = "crates/lox-math", version = "0.1.0-alpha.1" }
20-
lox-orbits = { path = "crates/lox-orbits", version = "0.1.0-alpha.1" }
21-
lox-space = { path = "crates/lox-space", version = "0.1.0-alpha.2" }
22-
lox-time = { path = "crates/lox-time", version = "0.1.0-alpha.0" }
16+
lox-earth = { path = "crates/lox-earth", version = "0.1.0-alpha.1" }
17+
lox-ephem = { path = "crates/lox-ephem", version = "0.1.0-alpha.1" }
18+
lox-io = { path = "crates/lox-io", version = "0.1.0-alpha.1" }
19+
lox-math = { path = "crates/lox-math", version = "0.1.0-alpha.2" }
20+
lox-orbits = { path = "crates/lox-orbits", version = "0.1.0-alpha.2" }
21+
lox-space = { path = "crates/lox-space", version = "0.1.0-alpha.3" }
22+
lox-time = { path = "crates/lox-time", version = "0.1.0-alpha.1" }
2323

2424
csv = "1.3.0"
2525
divan = "0.1.14"

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.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
10+
11+
### Other
12+
13+
- update Cargo.toml dependencies
14+
915
## [0.1.0-alpha.0](https://github.com/lox-space/lox/releases/tag/lox-bodies-v0.1.0-alpha.0) - 2024-07-19
1016

1117
### Other

crates/lox-bodies/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-bodies"
33
description = "Celestial body definitions for the Lox ecosystem"
4-
version = "0.1.0-alpha.0"
4+
version = "0.1.0-alpha.1"
55
rust-version.workspace = true
66
edition.workspace = true
77
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.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
10+
11+
### Other
12+
13+
- updated the following local packages: lox-bodies, lox-math, lox-io, lox-time
14+
915
## [0.1.0-alpha.0](https://github.com/lox-space/lox/releases/tag/lox-earth-v0.1.0-alpha.0) - 2024-07-19
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.0"
4+
version = "0.1.0-alpha.1"
55
rust-version.workspace = true
66
edition.workspace = true
77
license.workspace = true

crates/lox-ephem/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [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
10+
11+
### Added
12+
13+
- *(lox-orbits)* implement frame and origin change for Python classes
14+
- *(lox-orbits)* implement origin change for `State`
15+
916
## [0.1.0-alpha.0](https://github.com/lox-space/lox/releases/tag/lox-ephem-v0.1.0-alpha.0) - 2024-07-19
1017

1118
### Other

crates/lox-ephem/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-ephem"
33
description = "Ephemerides for the Lox ecosystem"
4-
version = "0.1.0-alpha.0"
4+
version = "0.1.0-alpha.1"
55
rust-version.workspace = true
66
edition.workspace = true
77
license.workspace = true

crates/lox-io/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [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
10+
11+
### Other
12+
13+
- fix clippy lints
14+
- *(lox-io)* remove fast-float due to security advisory
15+
916
## [0.1.0-alpha.0](https://github.com/lox-space/lox/releases/tag/lox-io-v0.1.0-alpha.0) - 2024-07-19
1017

1118
### Other

crates/lox-io/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-io"
33
description = "Interfaces for industry-standard astrodynamics file formats for the Lox ecosystem"
4-
version = "0.1.0-alpha.0"
4+
version = "0.1.0-alpha.1"
55
rust-version.workspace = true
66
edition.workspace = true
77
license.workspace = true

0 commit comments

Comments
 (0)