From d48b43f1186c12ae8f1ee839e1f45898bc1db1ac Mon Sep 17 00:00:00 2001 From: d3v-null Date: Tue, 20 Aug 2024 01:44:03 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20=20v0.9.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 4 ++++ Cargo.lock | 2 +- Cargo.toml | 10 +++++----- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e43b54..d0f5e36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.9.4] - 2024-08-20 +### Changes +- Native CPU compiler options off by default for better portability. + ## [0.9.3] - 2024-07-31 ### Fixed - fix a compile error when specifying env `HIP_FLAGS` with `--features=hip` diff --git a/Cargo.lock b/Cargo.lock index fe8c4ae..b6c6809 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -869,7 +869,7 @@ dependencies = [ [[package]] name = "mwa_hyperbeam" -version = "0.9.3" +version = "0.9.4" dependencies = [ "approx", "cbindgen", diff --git a/Cargo.toml b/Cargo.toml index 3222363..a8710b1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mwa_hyperbeam" -version = "0.9.3" +version = "0.9.4" authors = [ "Christopher H. Jordan ", "Jack L. B. Line ", @@ -17,6 +17,10 @@ repository = "https://github.com/MWATelescope/mwa_hyperbeam" homepage = "https://github.com/MWATelescope/mwa_hyperbeam" exclude = [".github/*", "fee_pols.pdf"] +[package.metadata.docs.rs] +features = ["hdf5-static"] +targets = ["x86_64-unknown-linux-gnu"] + # Make a rust library, as well as static and C-compatible dynamic libraries # available as "libmwa_hyperbeam.a" and "libmwa_hyperbeam.so". [lib] @@ -78,10 +82,6 @@ cfg-if = "1.0.0" cc = { version = "1.0.0", features = ["parallel"], optional = true } hip-sys = { version = "0.1.0", optional = true } -[package.metadata.docs.rs] -features = ["hdf5-static"] -targets = ["x86_64-unknown-linux-gnu"] - [[bench]] name = "bench" harness = false