Skip to content

Commit

Permalink
Merge pull request #15 from popzxc/bump-msrv
Browse files Browse the repository at this point in the history
Bump MSRV
  • Loading branch information
popzxc authored Jul 11, 2021
2 parents 5a5cd83 + e9e132f commit a791533
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

## 0.3.0 (18.06.2021)

- BREAKING: MSRV got bumped to 1.53.

- `try_match` and `unwrap_match` macros to get a certain variant from an enum [#11].
- `return_ok` and `return_some` macros for early return of successful calculation [#11].
- `Integer` trait that unifies all the built-in integer types under a single interface [#12].
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 = "stdext"
version = "0.3.0"
version = "0.3.1"
authors = ["Igor Aleksanov <[email protected]>"]
edition = "2018"
repository = "https://github.com/popzxc/stdext-rs"
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[![Docs.rs](https://docs.rs/stdext/badge.svg)](https://docs.rs/stdext)
[![Latest Version](https://img.shields.io/crates/v/stdext.svg)](https://crates.io/crates/stdext)
[![License](https://img.shields.io/github/license/popzxc/stdext-rs.svg)](https://github.com/popzxc/stdext-rs)
![Rust 1.44+ required](https://img.shields.io/badge/rust-1.44+-blue.svg?label=Rust)
![Rust 1.53+ required](https://img.shields.io/badge/rust-1.53+-blue.svg?label=Rust)

Additional features for the Rust standard library.

Expand All @@ -19,6 +19,10 @@ broad audience, but not yet implemented (or stabilized) in `std`.
Crate is designed to be lightweight (no external dependencies!) and provide essential
functionality which possible can get to the `std` some day.

The minimal supported Rust version for release 0.3 is 1.53. However, if you need to use
this crate with an older version of the compiler, check out release 0.2; there is a good
chance that it will suit your needs.

## Highlights

- `Integer` super-trait that is implemented for all the built-in integers
Expand Down

0 comments on commit a791533

Please sign in to comment.