Skip to content

Commit

Permalink
Merge pull request #309 from nyx-space/release/0.4.3
Browse files Browse the repository at this point in the history
Prep release 0.4.3
  • Loading branch information
ChristopherRabotin authored Sep 3, 2024
2 parents 07251f7 + 3827a11 commit a63436f
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
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 <[email protected]>"]
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

0 comments on commit a63436f

Please sign in to comment.