Skip to content

Commit 3dd75ae

Browse files
authored
Merge pull request #35 from MWATelescope/marlu_with_mwalib1.8.6
Marlu with mwalib1.8.7
2 parents 8dc0614 + 969572e commit 3dd75ae

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

Cargo.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "marlu"
3-
version = "0.15.1"
3+
version = "0.16.0"
44
authors = [
55
"Christopher H. Jordan <christopherjordan87@gmail.com>",
66
"Dev Null <dev.null@curtin.edu.au>",
@@ -57,7 +57,7 @@ fitsio = { version = "0.21.6", optional = true }
5757
fitsio-sys = { version = "~0.5", optional = true }
5858

5959
# "mwalib" feature
60-
mwalib = { version = "1.8.2", optional = true }
60+
mwalib = { version = "1.8.7", optional = true }
6161

6262
# "ms" feature
6363
flate2 = { version = "1.0.13", optional = true }
@@ -82,7 +82,7 @@ serial_test = "0.9.0"
8282
tempfile = "3.3.0"
8383

8484
[build-dependencies]
85-
built = { version = "~0.7.3", default-features = false, features = [
85+
built = { version = "=0.7.3", default-features = false, features = [
8686
"chrono",
8787
"git2",
8888
"semver",
@@ -97,9 +97,8 @@ name = "bench_io"
9797
harness = false
9898

9999
[patch.crates-io]
100-
# mwalib = { git = "https://github.com/MWATelescope/mwalib", branch = "pyo3_stub_chrono_fix" }
101100
# TODO: get rid of this once MSRV >= 1.67, built@0.7.3+git2 => icu_normalizer@1.5.0 => rustc 1.65.0
102-
built = { git = "https://github.com/lukaslueg/built", tag = "0.7.3" }
101+
# built = { git = "https://github.com/lukaslueg/built", tag = "0.7.3" }
103102
url = { git = "https://github.com/servo/rust-url", tag = "v2.5.2" }
104103
textwrap = { git = "https://github.com/mgeisler/textwrap", tag = "0.16.1" }
105104
flate2 = { git = "https://github.com/rust-lang/flate2-rs", tag = "1.0.35" }

RELEASES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
<!-- markdownlint-disable=MD025 -->
22

3+
# Version 0.16.0 (2025-04-10)
4+
5+
- update mwalib 1.8.7
6+
- minor code reformatting
7+
38
# Version 0.15.1 (2025-04-02)
49

510
- add antenna filtering to `VisSelection`

src/averaging.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ macro_rules! average_chunk_f64 {
166166
// re-use jones_weighted_sum to store the averaging result
167167
if !$avg_flag {
168168
jones_weighted_sum /= weight_sum_f64;
169-
} else {
169+
} else {
170170
jones_weighted_sum = jones_sum / chunk_size_f64;
171171
}
172172

0 commit comments

Comments
 (0)