Skip to content

Commit

Permalink
Bump MSRV to 1.46 because of bitflags 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
TeXitoi committed Aug 24, 2021
1 parent 4b09bd7 commit 4a31aae
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ matrix:
before_script: rustup component add clippy
script: cargo clippy --all -- -D warnings

- rust: 1.36.0
- rust: 1.46.0
- rust: stable
- rust: beta
- rust: nightly
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# v0.3.23 (unreleased)

* Update minimal rust version to 1.46 because of bitflags 1.3

# v0.3.22 (2021-07-04)

* Add support for [generics in derive](https://github.com/TeXitoi/structopt/issues/128)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# StructOpt

[![Build status](https://travis-ci.com/TeXitoi/structopt.svg?branch=master)](https://travis-ci.com/TeXitoi/structopt) [![](https://img.shields.io/crates/v/structopt.svg)](https://crates.io/crates/structopt) [![](https://docs.rs/structopt/badge.svg)](https://docs.rs/structopt)
[![Build status](https://travis-ci.com/TeXitoi/structopt.svg?branch=master)](https://app.travis-ci.com/github/TeXitoi/structopt) [![](https://img.shields.io/crates/v/structopt.svg)](https://crates.io/crates/structopt) [![](https://docs.rs/structopt/badge.svg)](https://docs.rs/structopt)
[![unsafe forbidden](https://img.shields.io/badge/unsafe-forbidden-success.svg)](https://github.com/rust-secure-code/safety-dance/)

Parse command line arguments by defining a struct. It combines [clap](https://crates.io/crates/clap) with custom derive.
Expand Down
2 changes: 1 addition & 1 deletion tests/macro-errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed

#[rustversion::attr(any(not(stable), before(1.43)), ignore)]
#[rustversion::attr(any(not(stable), before(1.54)), ignore)]
#[test]
fn ui() {
let t = trybuild::TestCases::new();
Expand Down

0 comments on commit 4a31aae

Please sign in to comment.