Skip to content

Commit

Permalink
(cargo-release) version 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickpeterse committed Mar 7, 2022
1 parent 01fb652 commit 3c82cc0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion libffi-rs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The format is based on [Keep a Changelog] and this project adheres to
[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/
[Semantic Versioning]: http://semver.org/spec/v2.0.0.html

## [Unreleased]
## [3.0.0] - 2022-03-07

- Improve cross-compilation support: https://github.com/tov/libffi-rs/pull/53
- Rust 1.48 or newer is now required
Expand Down
2 changes: 1 addition & 1 deletion libffi-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libffi"
version = "2.0.1"
version = "3.0.0"
authors = ["Jesse A. Tov <[email protected]>"]
description = "Rust bindings for libffi"
repository = "https://github.com/tov/libffi-rs"
Expand Down
4 changes: 2 additions & 2 deletions libffi-rs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ you can add

```toml
[dependencies]
libffi = "2.0.1"
libffi = "3.0.0"
```

to your `Cargo.toml`.
Expand All @@ -34,7 +34,7 @@ feature in your `Cargo.toml`:

```toml
[features]
libffi = { version = "2.0.1", features = ["system"] }
libffi = { version = "3.0.0", features = ["system"] }
```

See [the `libffi-sys` documentation] for more information about how it
Expand Down
6 changes: 3 additions & 3 deletions libffi-rs/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/libffi/2.0.1")]
#![doc(html_root_url = "https://docs.rs/libffi/3.0.0")]
//! Rust bindings for [libffi](https://sourceware.org/libffi/).
//!
//! The C libffi library provides two main facilities: assembling calls
Expand All @@ -22,7 +22,7 @@
//!
//! ```toml
//! [dependencies]
//! libffi = "2.0.1"
//! libffi = "3.0.0"
//! ```
//!
//! This crate depends on [the `libffi-sys` crate], which by default
Expand All @@ -32,7 +32,7 @@
//!
//! ```toml
//! [features]
//! libffi = { version = "2.0.1", features = ["system"] }
//! libffi = { version = "3.0.0", features = ["system"] }
//! ```
//!
//! See [the `libffi-sys` documentation] for more information about how it
Expand Down

0 comments on commit 3c82cc0

Please sign in to comment.