Skip to content

Commit

Permalink
chore: upgrade Rust minimum version to 1.74
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin1887 committed Apr 2, 2024
1 parent 7e0e90c commit 8c77390
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v4
- name: Install Rust
working-directory: pulldown-cmark
run: rustup default 1.70.0
run: rustup default 1.74.0
- name: Cargo build
working-directory: pulldown-cmark
run: cargo build --verbose --all
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -23,7 +23,7 @@ Further, it optionally supports parsing footnotes,
[Github flavored task lists](https://github.github.com/gfm/#task-list-items-extension-) and
[strikethrough](https://github.github.com/gfm/#strikethrough-extension-).

Rustc 1.70 or newer is required to build the crate.
Rustc 1.74 or newer is required to build the crate.

## Example

Expand Down
4 changes: 2 additions & 2 deletions pulldown-cmark/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pulldown-cmark"
version = "0.10.1"
version = "0.10.2"
authors = [
"Raph Levien <raph.levien@gmail.com>",
"Marcus Klaas de Vries <mail@marcusklaas.nl>",
Expand All @@ -11,7 +11,7 @@ repository = "https://github.com/raphlinus/pulldown-cmark"
keywords = ["markdown", "commonmark"]
categories = ["text-processing"]
edition = "2021"
rust-version = "1.70" # Update README.md and azure-pipelines.yml if this changes.
rust-version = "1.74" # Update README.md and GitHub action when changing this
readme = "../README.md"
exclude = [
"/third_party/**/*",
Expand Down

0 comments on commit 8c77390

Please sign in to comment.