Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickpeterse committed Apr 2, 2023
1 parent 0bd1b18 commit 7777303
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion libffi-sys-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]
## [2.2.1] - 2023-04-02

- Fix building with clang 16 and newer: https://github.com/tov/libffi-rs/pull/74

Expand Down
2 changes: 1 addition & 1 deletion libffi-sys-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libffi-sys"
version = "2.2.0"
version = "2.2.1"
authors = ["Jesse A. Tov <[email protected]>"]
links = "ffi"
build = "build/build.rs"
Expand Down
4 changes: 2 additions & 2 deletions libffi-sys-rs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ a C libffi for you, add

```toml
[dependencies]
libffi-sys = "2.2.0"
libffi-sys = "2.2.1"
```

to your `Cargo.toml`. If you want to use your system C libffi, then

```toml
[dependencies.libffi-sys]
version = "2.2.0"
version = "2.2.1"
features = ["system"]
```

Expand Down
6 changes: 3 additions & 3 deletions libffi-sys-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-sys/2.2.0")]
#![doc(html_root_url = "https://docs.rs/libffi-sys/2.2.1")]
//! Low-level Rust bindings for [libffi](https://sourceware.org/libffi/)
//!
//! The C libffi library provides two main facilities: assembling calls
Expand All @@ -24,14 +24,14 @@
//!
//! ```toml
//! [dependencies]
//! libffi-sys = "2.2.0"
//! libffi-sys = "2.2.1"
//! ```
//!
//! to your `Cargo.toml`. If you want to use your system C libffi, then
//!
//! ```toml
//! [dependencies.libffi-sys]
//! version = "2.2.0"
//! version = "2.2.1"
//! features = ["system"]
//! ```
//!
Expand Down

0 comments on commit 7777303

Please sign in to comment.