Skip to content

Commit

Permalink
Bump MSRV to 1.69.0 due to failing dependency resolution (#29)
Browse files Browse the repository at this point in the history
* Bump MSRV to 1.69.0 due to failing dependency resolution
  • Loading branch information
sterliakov authored Jun 1, 2024
1 parent 4173286 commit 39ce752
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
fail-fast: false
matrix:
rust:
- "1.67.1" # MSRV
- "1.69.0" # MSRV
- "stable"
- "beta"
- "nightly"
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "thor-devkit"
version = "0.1.0-beta.2"
version = "0.1.0-beta.3"
authors = ["Stanislav Terliakov <[email protected]>"]
description = "Rust library to aid coding with VeChain: wallets, transactions signing, encoding and verification, smart contract ABI interfacing, etc."
documentation = "https://docs.rs/thor-devkit"
Expand All @@ -10,7 +10,7 @@ keywords = ["vechain", "crypto", "blockchain", "cryptography"]
categories = ["cryptography"]
license = "GPL-3.0"
edition = "2021"
rust-version = "1.67.1"
rust-version = "1.69.0"

# See here for more info: https://blog.rust-lang.org/2020/03/15/docs-rs-opt-into-fewer-targets.html

Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,14 @@ You can find the crate's readme documentation on the
[crates.io]: https://crates.io/crates/thor-devkit
[`README.md`]: https://github.com/sterliakov/thor-devkit.rs

#### MSRV

`thor-devkit` promises to maintain a reasonable MSRV policy. MSRV will not be
bumped unless necessary, and such MSRV bumps will only happen in minor or major
releases as soon as the first non-beta release goes live. The required version
will never be newer than 6 months.

Currently it requires rust `1.69.0` or higher to build.

### Contributing

Expand Down
10 changes: 9 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/thor-devkit/0.1.0-beta.2")]
#![doc(html_root_url = "https://docs.rs/thor-devkit/0.1.0-beta.3")]
#![warn(rust_2018_idioms, missing_docs)]
#![deny(dead_code, unused_imports, unused_mut)]

Expand Down Expand Up @@ -64,6 +64,14 @@
//! [crates.io]: https://crates.io/crates/thor-devkit
//! [`README.md`]: https://github.com/sterliakov/thor-devkit.rs
//!
//! ### MSRV
//!
//! `thor-devkit` promises to maintain a reasonable MSRV policy. MSRV will not be
//! bumped unless necessary, and such MSRV bumps will only happen in minor or major
//! releases as soon as the first non-beta release goes live. The required version
//! will never be newer than 6 months.
//!
//! Currently it requires rust `1.69.0` or higher to build.
//!
//! ## Contributing
//!
Expand Down

0 comments on commit 39ce752

Please sign in to comment.