Skip to content

Commit

Permalink
Merge pull request #202 from artichoke/lopopolo/v1.4.0-edition2021
Browse files Browse the repository at this point in the history
Update MSRV to 1.56.0 and prepare for v1.4.0 release
  • Loading branch information
lopopolo authored Jul 21, 2023
2 parents cf9f4f9 + ff3d809 commit cfd94ac
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Install Rust toolchain
uses: artichoke/setup-rust/[email protected]
with:
toolchain: "1.52.0"
toolchain: "1.56.0"

- name: Compile
run: cargo build --verbose
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "focaccia"
version = "1.3.2" # remember to set `html_root_url` in `src/lib.rs`.
version = "1.4.0" # remember to set `html_root_url` in `src/lib.rs`.
authors = ["Ryan Lopopolo <[email protected]>"]
license = "MIT AND Unicode-DFS-2016"
edition = "2018"
rust-version = "1.52.0"
edition = "2021"
rust-version = "1.56.0"
readme = "README.md"
repository = "https://github.com/artichoke/focaccia"
documentation = "https://docs.rs/focaccia"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
focaccia = "1.3.2"
focaccia = "1.4.0"
```

Then make case insensitive string comparisons like:
Expand Down Expand Up @@ -125,7 +125,7 @@ All features are enabled by default.

### Minimum Supported Rust Version

This crate requires at least Rust 1.52.0. This version can be bumped in minor
This crate requires at least Rust 1.56.0. This version can be bumped in minor
releases.

## Unicode Version
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
//! [`Error`]: https://doc.rust-lang.org/stable/std/error/trait.Error.html

#![no_std]
#![doc(html_root_url = "https://docs.rs/focaccia/1.3.2")]
#![doc(html_root_url = "https://docs.rs/focaccia/1.4.0")]

#[cfg(feature = "std")]
extern crate std;
Expand Down

0 comments on commit cfd94ac

Please sign in to comment.