Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
rust: [stable, beta, 1.68.0]
rust: [stable, beta, 1.71.0]
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
rust: [stable, beta, 1.68.0]
rust: [stable, beta, 1.71.0]
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand All @@ -117,7 +117,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
rust: [ stable, beta, 1.68.0 ]
rust: [ stable, beta, 1.71.0 ]
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand All @@ -135,7 +135,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
rust: [ stable, beta, 1.68.0 ]
rust: [ stable, beta, 1.71.0 ]
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand All @@ -154,7 +154,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
rust: [ stable, beta, 1.68.0 ]
rust: [ stable, beta, 1.71.0 ]
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Changed

- Changed MSRV to `1.71`

## [bounded-static-0.8.0] & [bounded-static-derive-0.8.0] - 2024-06-23

### Added
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ members = ["bounded-static", "bounded-static-derive"]

[workspace.package]
version = "0.8.0"
rust-version = "1.68.0"
rust-version = "1.71.0"
edition = "2021"
authors = ["FujiApple <fujiapple852@gmail.com>"]
repository = "https://github.com/fujiapple852/bounded-static"
Expand All @@ -23,4 +23,4 @@ smol_str = { version = "0.2.2", default-features = false }
smallvec = { version = "1.13.2", default-features = false }
smartstring = { version = "1.0.1", default-features = false }
ahash = { version = "0.8.11", default-features = false }
chrono = { version = "0.4.38", default-features = false }
chrono = { version = "0.4.38", default-features = false }
Loading