Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #364

Merged
merged 2 commits into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -91,7 +91,7 @@ or use from your `Cargo.toml` as such:

```toml
[dependencies]
fitsio = "0.21.5"
fitsio = "0.21.6"
```

## Documentation
Expand Down
6 changes: 6 additions & 0 deletions fitsio-sys/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion fitsio-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fitsio-sys"
version = "0.5.3"
version = "0.5.4"
edition = "2018"
authors = ["Simon Walker <[email protected]>"]
description = "FFI wrapper around cfitsio"
Expand Down
10 changes: 10 additions & 0 deletions fitsio/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion fitsio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion fitsio/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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))]
Expand Down
Loading