Skip to content

Commit

Permalink
chore: update MSRV to 1.63 (#842)
Browse files Browse the repository at this point in the history
closes #833
  • Loading branch information
robjtede authored Jul 29, 2023
1 parent efea437 commit 0f6d00d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
build: [pinned, stable, nightly, macos, win-msvc]
build: [msrv, stable, nightly, macos, win-msvc]
include:
- build: pinned
- build: msrv
os: ubuntu-latest
rust: 1.56.0
rust: 1.63.0
- build: stable
os: ubuntu-latest
rust: stable
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Unreleased

- Minimum supported Rust version (MSRV) is now 1.63 due to transitive dependencies.

## 1.19.0 (2023-05-31)

- Revert change to glob path to not error if the path doesn't exist
Expand Down
10 changes: 3 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keywords = ["template", "html", "django", "markup", "jinja2"]
categories = ["template-engine"]
edition = "2018"
include = ["/src/**/*", "/LICENSE", "/README.md", "/CHANGELOG.md"]
rust-version = "1.56.0"
rust-version = "1.63"

[dependencies]
globwalk = "0.8.1"
Expand All @@ -33,15 +33,11 @@ percent-encoding = {version = "2.2", optional = true}
humansize = {version = "2.1", optional = true}
# used in date format filter
chrono = {version = "0.4.23", optional = true, default-features = false, features = ["std", "clock"]}
# chrono-tz is pinned to Version 0.6.1 for MSRV 1.56.0
chrono-tz = {version = "=0.6.1", optional = true}
# used in date format filter
chrono-tz = {version = "0.8", optional = true}
# used in get_random function
rand = {version = "0.8", optional = true}

# thread_local is pinned for MSRV 1.56.0
[dependencies.thread_local]
version="=1.1.4"

[dev-dependencies]
serde_derive = "1.0"
pretty_assertions = "1"
Expand Down

0 comments on commit 0f6d00d

Please sign in to comment.