From b7ffb1f37b8ad5ef873959830f5b11f13a7e3188 Mon Sep 17 00:00:00 2001 From: "Guillaume W. Bres" Date: Mon, 18 Sep 2023 17:18:29 +0200 Subject: [PATCH 1/5] fix compressed sp3 support Signed-off-by: Guillaume W. Bres --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 991ed433c..7c12243c6 100644 --- a/README.md +++ b/README.md @@ -97,7 +97,8 @@ File formats | CRINEX | :heavy_minus_sign: | :heavy_check_mark: | | gzip compressed RINEX | Name must end with `.gz` | `--flate2` feature must be enabled | | gzip compressed CRINEX | Name must end with `.gz` | `--flate2` feature must be enabled | -| SP3 | :heavy_minus_sign: | `--flate2` feature must be enabled | +| SP3 | :heavy_minus_sign: | :heavy_check_mark: | +| gzip compressed SP3 | Name must end with `.gz` | `--flate2` feature must be enabled | :heavy_minus_sign: No restrictions: file names do not have to follow naming conventions. From 54d436034a00ce4061e1d32eb89d3fe00a53bc9d Mon Sep 17 00:00:00 2001 From: "Guillaume W. Bres" Date: Mon, 18 Sep 2023 17:19:11 +0200 Subject: [PATCH 2/5] bump rinex to v0.13.3 Signed-off-by: Guillaume W. Bres --- rinex/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rinex/Cargo.toml b/rinex/Cargo.toml index 44630934d..584ab691f 100644 --- a/rinex/Cargo.toml +++ b/rinex/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rinex" -version = "0.13.2" +version = "0.13.3" license = "MIT OR Apache-2.0" authors = ["Guillaume W. Bres "] description = "Package to parse and analyze RINEX data" From 38febf0c53af64da90a0aa2ac64457cbb728bcf9 Mon Sep 17 00:00:00 2001 From: "Guillaume W. Bres" Date: Mon, 18 Sep 2023 17:21:23 +0200 Subject: [PATCH 3/5] bump qc to v0.1.3 Signed-off-by: Guillaume W. Bres --- rinex-qc/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rinex-qc/Cargo.toml b/rinex-qc/Cargo.toml index 29673fd55..dd7d87519 100644 --- a/rinex-qc/Cargo.toml +++ b/rinex-qc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rinex-qc" -version = "0.1.2" +version = "0.1.3" license = "MIT OR Apache-2.0" authors = ["Guillaume W. Bres "] description = "RINEX data analysis" From 3d993286b9ccebf09a80c4bce79e30b4d72388c4 Mon Sep 17 00:00:00 2001 From: "Guillaume W. Bres" Date: Tue, 19 Sep 2023 11:33:00 +0200 Subject: [PATCH 4/5] update Signed-off-by: Guillaume W. Bres --- rinex/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rinex/Cargo.toml b/rinex/Cargo.toml index 584ab691f..3612a5d4a 100644 --- a/rinex/Cargo.toml +++ b/rinex/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rinex" -version = "0.13.3" +version = "0.14.0" license = "MIT OR Apache-2.0" authors = ["Guillaume W. Bres "] description = "Package to parse and analyze RINEX data" From 2ca984262c471f67f9e20239695af627533bc8ca Mon Sep 17 00:00:00 2001 From: "Guillaume W. Bres" Date: Tue, 19 Sep 2023 12:16:50 +0200 Subject: [PATCH 5/5] bump revisions Signed-off-by: Guillaume W. Bres --- rinex-cli/Cargo.toml | 2 +- rinex-qc/Cargo.toml | 2 +- sp3/Cargo.toml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/rinex-cli/Cargo.toml b/rinex-cli/Cargo.toml index 4b2719a48..5e509cfa5 100644 --- a/rinex-cli/Cargo.toml +++ b/rinex-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rinex-cli" -version = "0.9.2" +version = "0.9.3" license = "MIT OR Apache-2.0" authors = ["Guillaume W. Bres "] description = "Command line tool parse and analyze RINEX data" diff --git a/rinex-qc/Cargo.toml b/rinex-qc/Cargo.toml index dd7d87519..de23d2293 100644 --- a/rinex-qc/Cargo.toml +++ b/rinex-qc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rinex-qc" -version = "0.1.3" +version = "0.1.4" license = "MIT OR Apache-2.0" authors = ["Guillaume W. Bres "] description = "RINEX data analysis" diff --git a/sp3/Cargo.toml b/sp3/Cargo.toml index 4bb3adf32..cce03e92f 100644 --- a/sp3/Cargo.toml +++ b/sp3/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "sp3" -version = "1.0.3" +version = "1.0.4" license = "MIT OR Apache-2.0" authors = ["Guillaume W. Bres "] description = "IGS SP3 file parser" homepage = "https://github.com/georust/sp3" repository = "https://github.com/georust/sp3" documentation = "https://docs.rs/sp3/" -keywords = ["gnss", "timing", "gps", "glonass", "galileo", "igs"] +keywords = ["gnss", "timing", "igs"] categories = ["science", "science::geo", "parsing"] edition = "2021" readme = "README.md"