From 53611ef3c98b0ec856c6aa98e6d65f6d82ee349d Mon Sep 17 00:00:00 2001 From: Simon Walker Date: Thu, 2 Jan 2025 11:50:15 +0000 Subject: [PATCH] chore: release (#381) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 🤖 New release * `fitsio`: 0.21.6 -> 0.21.7 (✓ API compatible changes) * `fitsio-sys`: 0.5.4 -> 0.5.5 (✓ API compatible changes)
Changelog

## `fitsio`

## [0.21.7](https://github.com/simonrw/rust-fitsio/compare/fitsio-v0.21.6...fitsio-v0.21.7) - 2025-01-02 ### Other - Include function to get cfitsio version ([#379](https://github.com/simonrw/rust-fitsio/pull/379)) - Fix macos tests ([#380](https://github.com/simonrw/rust-fitsio/pull/380))
## `fitsio-sys`
## [0.5.5](https://github.com/simonrw/rust-fitsio/compare/fitsio-sys-v0.5.4...fitsio-sys-v0.5.5) - 2025-01-02 ### Other - Simplify build.rs of fitsio-sys ([#377](https://github.com/simonrw/rust-fitsio/pull/377)) - Include function to get cfitsio version ([#379](https://github.com/simonrw/rust-fitsio/pull/379)) - *(deps)* update bindgen requirement from 0.70 to 0.71 in /fitsio-sys in the cargo-packages group (#372)

--- This PR was generated with [release-plz](https://github.com/release-plz/release-plz/). --- Cargo.lock | 4 ++-- README.md | 4 ++-- fitsio-sys/CHANGELOG.md | 8 ++++++++ fitsio-sys/Cargo.toml | 2 +- fitsio/CHANGELOG.md | 7 +++++++ fitsio/Cargo.toml | 2 +- fitsio/src/lib.rs | 2 +- 7 files changed, 22 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ca8f95b4..025698fc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -271,7 +271,7 @@ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" [[package]] name = "fitsio" -version = "0.21.6" +version = "0.21.7" dependencies = [ "criterion", "fitsio-derive", @@ -294,7 +294,7 @@ dependencies = [ [[package]] name = "fitsio-sys" -version = "0.5.4" +version = "0.5.5" dependencies = [ "autotools", "bindgen", diff --git a/README.md b/README.md index 931a9deb..fadf92ba 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ Or pin a specific version: ```toml [dependencies] -fitsio = "0.21.6" +fitsio = "0.21.7" ``` This repository contains `fitsio-sys-bindgen` which generates the C @@ -91,7 +91,7 @@ or use from your `Cargo.toml` as such: ```toml [dependencies] -fitsio = "0.21.6" +fitsio = "0.21.7" ``` ## Documentation diff --git a/fitsio-sys/CHANGELOG.md b/fitsio-sys/CHANGELOG.md index 8a9a8487..6d1a3c95 100644 --- a/fitsio-sys/CHANGELOG.md +++ b/fitsio-sys/CHANGELOG.md @@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a ## Unreleased +## [0.5.5](https://github.com/simonrw/rust-fitsio/compare/fitsio-sys-v0.5.4...fitsio-sys-v0.5.5) - 2025-01-02 + +### Other + +- Simplify build.rs of fitsio-sys ([#377](https://github.com/simonrw/rust-fitsio/pull/377)) +- Include function to get cfitsio version ([#379](https://github.com/simonrw/rust-fitsio/pull/379)) +- *(deps)* update bindgen requirement from 0.70 to 0.71 in /fitsio-sys in the cargo-packages group (#372) + ## [0.5.4](https://github.com/simonrw/rust-fitsio/compare/fitsio-sys-v0.5.3...fitsio-sys-v0.5.4) - 2024-10-31 ### Other diff --git a/fitsio-sys/Cargo.toml b/fitsio-sys/Cargo.toml index ea056cf9..9924354d 100644 --- a/fitsio-sys/Cargo.toml +++ b/fitsio-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fitsio-sys" -version = "0.5.4" +version = "0.5.5" edition = "2018" authors = ["Simon Walker "] description = "FFI wrapper around cfitsio" diff --git a/fitsio/CHANGELOG.md b/fitsio/CHANGELOG.md index 5bfb3251..5c54e4fb 100644 --- a/fitsio/CHANGELOG.md +++ b/fitsio/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.21.7](https://github.com/simonrw/rust-fitsio/compare/fitsio-v0.21.6...fitsio-v0.21.7) - 2025-01-02 + +### Other + +- Include function to get cfitsio version ([#379](https://github.com/simonrw/rust-fitsio/pull/379)) +- Fix macos tests ([#380](https://github.com/simonrw/rust-fitsio/pull/380)) + ## [0.21.6](https://github.com/simonrw/rust-fitsio/compare/fitsio-v0.21.5...fitsio-v0.21.6) - 2024-10-31 ### Added diff --git a/fitsio/Cargo.toml b/fitsio/Cargo.toml index 9511e793..d6008966 100644 --- a/fitsio/Cargo.toml +++ b/fitsio/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT/Apache-2.0" name = "fitsio" readme = "README.md" repository = "https://github.com/simonrw/rust-fitsio" -version = "0.21.6" +version = "0.21.7" rust-version = "1.58.0" [package.metadata.release] diff --git a/fitsio/src/lib.rs b/fitsio/src/lib.rs index 93d3ce16..18caf5aa 100644 --- a/fitsio/src/lib.rs +++ b/fitsio/src/lib.rs @@ -1041,7 +1041,7 @@ let _hdu = t.hdu(hdu_num).unwrap(); [threadsafe-fits-file]: threadsafe_fitsfile/struct.ThreadsafeFitsFile.html */ -#![doc(html_root_url = "https://docs.rs/fitsio/0.21.6")] +#![doc(html_root_url = "https://docs.rs/fitsio/0.21.7")] #![deny(missing_docs)] #![cfg_attr(feature = "clippy", feature(plugin))] #![cfg_attr(feature = "clippy", plugin(clippy))]