Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep release 0.4.3 #309

Merged
merged 2 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resolver = "2"
members = ["anise", "anise-cli", "anise-gui", "anise-py"]

[workspace.package]
version = "0.4.2"
version = "0.4.3"
edition = "2021"
authors = ["Christopher Rabotin <christopher.rabotin@gmail.com>"]
description = "ANISE provides a toolkit and files for Attitude, Navigation, Instrument, Spacecraft, and Ephemeris data. It's a modern replacement of NAIF SPICE file."
Expand Down Expand Up @@ -50,7 +50,7 @@ serde = "1"
serde_derive = "1"
serde_dhall = "0.12"

anise = { version = "0.4.2", path = "anise", default-features = false }
anise = { version = "0.4.3", path = "anise", default-features = false }

[profile.bench]
debug = true
Expand Down
4 changes: 2 additions & 2 deletions anise/src/almanac/metaload/metaalmanac.rs
Original file line number Diff line number Diff line change
Expand Up @@ -241,14 +241,14 @@ impl Default for MetaAlmanac {
},
MetaFile {
uri: nyx_cloud_stor.join("v0.4/moon_fk.epa").unwrap().to_string(),
crc32: Some(0x1175bd92),
crc32: Some(0xb93ba21),
},
MetaFile {
uri: nyx_cloud_stor
.join("moon_pa_de440_200625.bpc")
.unwrap()
.to_string(),
crc32: Some(0x6c58ce0a),
crc32: Some(0xcde5ca7d),
},
MetaFile {
uri: jpl_cloud_stor
Expand Down
2 changes: 1 addition & 1 deletion anise/src/almanac/metaload/metafile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ impl MetaFile {
self.uri = dest_path_s;
return Ok(());
} else {
info!("Discarding cached {dest_path_s} - CRC32 differ (got {computed_crc32}, config expected {crc32})");
info!("Discarding cached {dest_path_s} - CRC32 differ (got {computed_crc32:x}, expected {crc32:x})");
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions anise/src/almanac/metaload/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,16 +130,16 @@ mod meta_test {
let from_str = MetaAlmanac::from_str(
r#"
{ files =
[ { crc32 = Some 1921414410
[ { crc32 = Some 0x7286750a
, uri = "http://public-data.nyxspace.com/anise/de440s.bsp"
}
, { crc32 = Some 2182330089
, { crc32 = Some 0x8213b6e9
, uri = "http://public-data.nyxspace.com/anise/v0.4/pck11.pca"
}
, { crc32 = Some 292928914
, { crc32 = Some 0xb93ba21
, uri = "http://public-data.nyxspace.com/anise/v0.4/moon_fk.epa"
}
, { crc32 = Some 1817759242
, { crc32 = Some 0xcde5ca7d
, uri = "http://public-data.nyxspace.com/anise/moon_pa_de440_200625.bpc"
}
, { crc32 = None Natural
Expand Down
8 changes: 4 additions & 4 deletions data/latest.dhall
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
-- Latest planetary ephemerides, planetary constants, high precision Moon rotation, and daily Earth orientation parameter
{ files =
[ { crc32 = Some 1921414410
[ { crc32 = Some 0x7286750a
, uri = "http://public-data.nyxspace.com/anise/de440s.bsp"
}
, { crc32 = Some 2182330089
, { crc32 = Some 0x8213b6e9
, uri = "http://public-data.nyxspace.com/anise/v0.4/pck11.pca"
}
, { crc32 = Some 292928914
, { crc32 = Some 0xb93ba21
, uri = "http://public-data.nyxspace.com/anise/v0.4/moon_fk.epa"
}
, { crc32 = Some 1817759242
, { crc32 = Some 0xcde5ca7d
, uri = "http://public-data.nyxspace.com/anise/moon_pa_de440_200625.bpc"
}
, { crc32 = None Natural
Expand Down
Loading