Skip to content

Commit 6bc2e35

Browse files
authored
Make TimeCorrectionError public (#26)
* Make TimeCorrectionError public * Improve release script --------- Signed-off-by: Guillaume W. Bres <[email protected]>
1 parent 48c12ba commit 6bc2e35

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/rust.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ on:
88
pull_request:
99
branches: [ "main" ]
1010

11+
permissions:
12+
contents: write
13+
1114
env:
1215
CARGO_TERM_COLOR: always
1316

@@ -40,7 +43,6 @@ jobs:
4043
release:
4144
name: Release
4245
runs-on: ubuntu-latest
43-
needs: [build]
4446
if: github.ref_type == 'tag'
4547
steps:
4648
- name: Checkout

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gnss-qc-traits"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
license = "MPL-2.0"
55
authors = ["Guillaume W. Bres <[email protected]>"]
66
description = "GNSS Quality Control traits"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ mod processing;
1313
pub use processing::{
1414
Decimate, DecimationError, DecimationFilter, DecimationFilterType, Filter, FilterItem,
1515
MaskError, MaskFilter, MaskOperand, Masking, Preprocessing, Repair, RepairTrait, Split,
16-
TimeCorrection, TimeCorrectionsDB, Timeshift,
16+
TimeCorrection, TimeCorrectionError, TimeCorrectionsDB, Timeshift,
1717
};
1818

1919
#[cfg(feature = "html")]

src/processing/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ mod split;
1515
pub use split::Split;
1616

1717
mod time;
18-
pub use time::{TimeCorrection, TimeCorrectionsDB, Timeshift};
18+
pub use time::{TimeCorrection, TimeCorrectionError, TimeCorrectionsDB, Timeshift};
1919

2020
/// Preprocessing Trait is usually implemented by GNSS data
2121
/// to preprocess prior further analysis.

0 commit comments

Comments
 (0)