Skip to content

Commit

Permalink
Bump MSRV to v1.60
Browse files Browse the repository at this point in the history
  • Loading branch information
daxpedda committed May 20, 2023
1 parent ee57999 commit 7b79479
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
os:
- ubuntu-latest
rust:
- { version: 1.56, msrv: true }
- { version: 1.60, msrv: true }
- { version: stable, msrv: false }
target:
- { target: x86_64-unknown-linux-gnu, native: true }
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

- Bump MSRV to v1.60.

## [0.2.0] - 2023-03-28

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["instant", "wasm", "web", "systemtime", "time"]
license = "MIT OR Apache-2.0"
name = "web-time"
repository = "https://github.com/daxpedda/web-time"
rust-version = "1.56"
rust-version = "1.60"
version = "0.2.0"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ let time = SystemTime::now();
## MSRV

As this library heavily relies on [`wasm-bindgen`] the MSRV depends on it.
At the point of time this was written the MSRV is 1.56.
At the point of time this was written the MSRV is 1.60.

## Alternatives

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
//! # MSRV
//!
//! As this library heavily relies on [`wasm-bindgen`] the MSRV depends on it.
//! At the point of time this was written the MSRV is 1.56.
//! At the point of time this was written the MSRV is 1.60.
//!
//! # Alternatives
//!
Expand Down

0 comments on commit 7b79479

Please sign in to comment.