From 792c88bc84ad163cf9cbc2a776b5c4e37b32454b Mon Sep 17 00:00:00 2001 From: Simon Walker Date: Thu, 2 Jan 2025 11:17:56 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 4 ++-- fitsio-sys/CHANGELOG.md | 8 ++++++++ fitsio-sys/Cargo.toml | 2 +- fitsio/CHANGELOG.md | 7 +++++++ fitsio/Cargo.toml | 2 +- 5 files changed, 19 insertions(+), 4 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/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]