Skip to content

Commit ac07ff4

Browse files
committed
Bumped mwalib to v1.8.6 for large T support
1 parent 8dc0614 commit ac07ff4

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 2 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.6", optional = true }
6161

6262
# "ms" feature
6363
flate2 = { version = "1.0.13", optional = true }

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-09)
4+
5+
- update mwalib 1.8.6
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)