Skip to content

Commit

Permalink
update version numbers in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrw committed Jul 26, 2024
1 parent e064467 commit 5cee2bb
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
36 changes: 18 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@ FFI wrapper around cfitsio in Rust

## Platform support

| Platform | Support level |
| --- | --- |
| Linux arm | Tier 1 |
| Linux x86_64 | Tier 1 |
| macos x86_64 | Tier 1 |
| Linux arm64 | Tier 2 |
| Linux i386 | Tier 2 |
| macos arm64 | Tier 2 |
| Windows msys2 | Tier 3 |
| Windows msvc | - |
| Platform | Support level |
| ------------- | ------------- |
| Linux arm | Tier 1 |
| Linux x86_64 | Tier 1 |
| macos x86_64 | Tier 1 |
| Linux arm64 | Tier 2 |
| Linux i386 | Tier 2 |
| macos arm64 | Tier 2 |
| Windows msys2 | Tier 3 |
| Windows msvc | - |

Where the tiers refer to:

* Tier 1: guaranteed to work, tested in CI
* Tier 2: should work but not tested by CI
* Tier 3: may work, and not tested by CI
- Tier 1: guaranteed to work, tested in CI
- Tier 2: should work but not tested by CI
- Tier 3: may work, and not tested by CI

## MSRV

Expand Down Expand Up @@ -54,26 +54,26 @@ cargo build --features fitsio-src
```

For the time being, it's best to stick to the development version from
github. The code is tested before being pushed and is relatively
github. The code is tested before being pushed and is relatively
stable. Add this to your `Cargo.toml` file:

```toml,no_sync
[dependencies]
fitsio = "0.21.2"
fitsio = "0.21.3"
```

If you want the latest release from `crates.io` then add the following:

```toml
[dependencies]
fitsio = "0.21.2"
fitsio = "0.21.3"
```

Or pin a specific version:

```toml
[dependencies]
fitsio = "0.21.2"
fitsio = "0.21.3"
```

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.2"
fitsio = "0.21.3"
```

## Documentation
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.2")]
#![doc(html_root_url = "https://docs.rs/fitsio/0.21.3")]
#![deny(missing_docs)]
#![cfg_attr(feature = "clippy", feature(plugin))]
#![cfg_attr(feature = "clippy", plugin(clippy))]
Expand Down

0 comments on commit 5cee2bb

Please sign in to comment.