Skip to content

Commit

Permalink
chore: release (#381)
Browse files Browse the repository at this point in the history
## πŸ€– New release
* `fitsio`: 0.21.6 -> 0.21.7 (βœ“ API compatible changes)
* `fitsio-sys`: 0.5.4 -> 0.5.5 (βœ“ API compatible changes)

<details><summary><i><b>Changelog</b></i></summary><p>

## `fitsio`
<blockquote>

##
[0.21.7](fitsio-v0.21.6...fitsio-v0.21.7)
- 2025-01-02

### Other

- Include function to get cfitsio version
([#379](#379))
- Fix macos tests
([#380](#380))
</blockquote>

## `fitsio-sys`
<blockquote>

##
[0.5.5](fitsio-sys-v0.5.4...fitsio-sys-v0.5.5)
- 2025-01-02

### Other

- Simplify build.rs of fitsio-sys
([#377](#377))
- Include function to get cfitsio version
([#379](#379))
- *(deps)* update bindgen requirement from 0.70 to 0.71 in /fitsio-sys
in the cargo-packages group (#372)
</blockquote>


</p></details>

---
This PR was generated with
[release-plz](https://github.com/release-plz/release-plz/).
  • Loading branch information
simonrw authored Jan 2, 2025
1 parent 7e0e6ef commit 53611ef
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -91,7 +91,7 @@ or use from your `Cargo.toml` as such:

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

## Documentation
Expand Down
8 changes: 8 additions & 0 deletions fitsio-sys/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.4"
version = "0.5.5"
edition = "2018"
authors = ["Simon Walker <s.r.walker101@googlemail.com>"]
description = "FFI wrapper around cfitsio"
Expand Down
7 changes: 7 additions & 0 deletions fitsio/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.6"
version = "0.21.7"
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.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))]
Expand Down

0 comments on commit 53611ef

Please sign in to comment.