Skip to content

Commit

Permalink
version: 0.31.0 -> 0.32.0
Browse files Browse the repository at this point in the history
  • Loading branch information
newAM authored Nov 7, 2021
1 parent 86f9cc4 commit ab9148f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.32.0] - 2021-11-07
### Added
- Added `Drop` for FTDI types that will call `close`.

Expand Down Expand Up @@ -137,7 +137,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Prior releases
A changelog was not kept for prior releases.

[Unreleased]: https://github.com/ftdi-rs/libftd2xx/compare/0.31.0...HEAD
[Unreleased]: https://github.com/ftdi-rs/libftd2xx/compare/0.32.0...HEAD
[0.32.0]: https://github.com/ftdi-rs/libftd2xx/compare/0.31.0...0.32.0
[0.31.0]: https://github.com/ftdi-rs/libftd2xx/compare/0.30.0...0.31.0
[0.30.0]: https://github.com/ftdi-rs/libftd2xx/compare/0.29.0...0.30.0
[0.29.0]: https://github.com/ftdi-rs/libftd2xx/compare/0.28.0...0.29.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libftd2xx"
version = "0.31.0" # remember to update html_root_url
version = "0.32.0"
authors = ["Alex Martens <[email protected]>"]
edition = "2018"
description = "Rust safe wrapper around the libftd2xx-ffi crate."
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Simply add this crate as a dependency in your `Cargo.toml`.

```toml
[dependencies.libftd2xx]
version = "~0.31.0"
version = "0.32"
# statically link the vendor library, defaults to dynamic if not set
# this will make things "just work" on Linux and Windows
features = ["static"]
Expand Down
3 changes: 1 addition & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//!
//! ```toml
//! [dependencies.libftd2xx]
//! version = "~0.31.0"
//! version = "0.32"
//! # statically link the vendor library, defaults to dynamic if not set
//! # this will make things "just work" on Linux and Windows
//! features = ["static"]
Expand Down Expand Up @@ -92,7 +92,6 @@
//! [`ftd2xx-embedded-hal`]: https://crates.io/crates/ftd2xx-embedded-hal
//! [`embedded-hal`]: https://crates.io/crates/embedded-hal
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc(html_root_url = "https://docs.rs/libftd2xx/0.31.0")]
#![deny(missing_docs)]

mod errors;
Expand Down

0 comments on commit ab9148f

Please sign in to comment.