Skip to content

Commit

Permalink
Bump version to 0.29.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
newAM committed May 29, 2021
1 parent 03f4445 commit 9ba3829
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 9 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
on:
push:
branches:
- main
tags:
- '*'
pull_request:
schedule:
- cron: "13 3 * * *"
- cron: "41 3 * * *"

name: CI

Expand Down Expand Up @@ -86,9 +90,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: cargo install cargo-deadlinks
- run: cargo doc
- run: cargo deadlinks
- run: RUSTDOCFLAGS="-D warnings" cargo doc

format_check:
name: Rust Format
Expand Down
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ 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).

## [0.29.0] - 2021-05-29
### Added
- Added a `device_type` function to work around a bug in native `device_info`
function.
- Added `wait_on_io_high` and `wait_on_io_low` MPSSE commands.

### Changed
- Changed the `TryFrom<Ftdi>` trait implementations to use the new `device_type`
function instead of `device_info`.

## [0.28.0] - 2021-04-03
### Added
- Added support for the FT2232H.
Expand Down Expand Up @@ -104,7 +114,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/newAM/libftd2xx-rs/compare/0.28.0...HEAD
[Unreleased]: https://github.com/newAM/libftd2xx-rs/compare/0.29.0...HEAD
[0.29.0]: https://github.com/newAM/libftd2xx-rs/compare/0.28.0...0.29.0
[0.28.0]: https://github.com/newAM/libftd2xx-rs/compare/0.27.0...0.28.0
[0.27.0]: https://github.com/newAM/libftd2xx-rs/compare/0.26.0...0.27.0
[0.26.0]: https://github.com/newAM/libftd2xx-rs/compare/0.25.1...0.26.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.28.0" # remember to update html_root_url
version = "0.29.0" # remember to update html_root_url
authors = ["Alex M. <[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.28.0"
version = "~0.29.0"
# statically link the vendor library, defaults to dynamic if not set
# this will make things "just work" on Linux
# not recommended on Windows due to legacy library requirements
Expand Down
4 changes: 2 additions & 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.28.0"
//! version = "~0.29.0"
//! # statically link the vendor library, defaults to dynamic if not set
//! # this will make things "just work" on Linux
//! # not recommended on Windows due to legacy library requirements
Expand Down Expand Up @@ -99,7 +99,7 @@
//! [`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.28.0")]
#![doc(html_root_url = "https://docs.rs/libftd2xx/0.29.0")]
#![deny(missing_docs)]

mod errors;
Expand Down

0 comments on commit 9ba3829

Please sign in to comment.