Skip to content

Commit 39ce752

Browse files
authored
Bump MSRV to 1.69.0 due to failing dependency resolution (#29)
* Bump MSRV to 1.69.0 due to failing dependency resolution
1 parent 4173286 commit 39ce752

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
fail-fast: false
3232
matrix:
3333
rust:
34-
- "1.67.1" # MSRV
34+
- "1.69.0" # MSRV
3535
- "stable"
3636
- "beta"
3737
- "nightly"

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thor-devkit"
3-
version = "0.1.0-beta.2"
3+
version = "0.1.0-beta.3"
44
authors = ["Stanislav Terliakov <terlya.stas@gmail.com>"]
55
description = "Rust library to aid coding with VeChain: wallets, transactions signing, encoding and verification, smart contract ABI interfacing, etc."
66
documentation = "https://docs.rs/thor-devkit"
@@ -10,7 +10,7 @@ keywords = ["vechain", "crypto", "blockchain", "cryptography"]
1010
categories = ["cryptography"]
1111
license = "GPL-3.0"
1212
edition = "2021"
13-
rust-version = "1.67.1"
13+
rust-version = "1.69.0"
1414

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

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,14 @@ You can find the crate's readme documentation on the
6969
[crates.io]: https://crates.io/crates/thor-devkit
7070
[`README.md`]: https://github.com/sterliakov/thor-devkit.rs
7171

72+
#### MSRV
73+
74+
`thor-devkit` promises to maintain a reasonable MSRV policy. MSRV will not be
75+
bumped unless necessary, and such MSRV bumps will only happen in minor or major
76+
releases as soon as the first non-beta release goes live. The required version
77+
will never be newer than 6 months.
78+
79+
Currently it requires rust `1.69.0` or higher to build.
7280

7381
### Contributing
7482

src/lib.rs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/thor-devkit/0.1.0-beta.2")]
1+
#![doc(html_root_url = "https://docs.rs/thor-devkit/0.1.0-beta.3")]
22
#![warn(rust_2018_idioms, missing_docs)]
33
#![deny(dead_code, unused_imports, unused_mut)]
44

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

0 commit comments

Comments
 (0)