diff --git a/README.md b/README.md index f8c42ab0..931a9deb 100644 --- a/README.md +++ b/README.md @@ -59,21 +59,21 @@ stable. Add this to your `Cargo.toml` file: ```toml,no_sync [dependencies] -fitsio = "0.21.5" +fitsio = { git = "https://github.com/simonrw/rust-fitsio" } ``` If you want the latest release from `crates.io` then add the following: ```toml [dependencies] -fitsio = "0.21.5" +fitsio = "*" ``` Or pin a specific version: ```toml [dependencies] -fitsio = "0.21.5" +fitsio = "0.21.6" ``` 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.5" +fitsio = "0.21.6" ``` ## Documentation diff --git a/fitsio-sys/CHANGELOG.md b/fitsio-sys/CHANGELOG.md index cf5e2dfe..8a9a8487 100644 --- a/fitsio-sys/CHANGELOG.md +++ b/fitsio-sys/CHANGELOG.md @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a ## Unreleased +## [0.5.4](https://github.com/simonrw/rust-fitsio/compare/fitsio-sys-v0.5.3...fitsio-sys-v0.5.4) - 2024-10-31 + +### Other + +- *(deps)* update bindgen requirement from 0.69 to 0.70 in /fitsio-sys in the cargo-packages group ([#357](https://github.com/simonrw/rust-fitsio/pull/357)) + ## [0.5.3](https://github.com/simonrw/rust-fitsio/compare/fitsio-sys-v0.5.2...fitsio-sys-v0.5.3) - 2024-07-26 ### Other diff --git a/fitsio-sys/Cargo.toml b/fitsio-sys/Cargo.toml index 2c4922f0..748cb7a9 100644 --- a/fitsio-sys/Cargo.toml +++ b/fitsio-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fitsio-sys" -version = "0.5.3" +version = "0.5.4" edition = "2018" authors = ["Simon Walker "] description = "FFI wrapper around cfitsio" diff --git a/fitsio/CHANGELOG.md b/fitsio/CHANGELOG.md index ab7517d8..5bfb3251 100644 --- a/fitsio/CHANGELOG.md +++ b/fitsio/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.21.6](https://github.com/simonrw/rust-fitsio/compare/fitsio-v0.21.5...fitsio-v0.21.6) - 2024-10-31 + +### Added + +- add `FitsFile::file_path` method to access `FitsFile` file path ([#367](https://github.com/simonrw/rust-fitsio/pull/367)) + +### Other + +- Allow needless-lifetimes ([#363](https://github.com/simonrw/rust-fitsio/pull/363)) + ## [0.21.5](https://github.com/simonrw/rust-fitsio/compare/fitsio-v0.21.4...fitsio-v0.21.5) - 2024-08-06 ### Added diff --git a/fitsio/Cargo.toml b/fitsio/Cargo.toml index 2f5541a0..0c6861e5 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.5" +version = "0.21.6" rust-version = "1.58.0" [package.metadata.release] diff --git a/fitsio/src/lib.rs b/fitsio/src/lib.rs index f8590a04..35f05b94 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.5")] +#![doc(html_root_url = "https://docs.rs/fitsio/0.21.6")] #![deny(missing_docs)] #![cfg_attr(feature = "clippy", feature(plugin))] #![cfg_attr(feature = "clippy", plugin(clippy))]