Skip to content

Commit 0072045

Browse files
committed
bump msrv...
1 parent c6c3b25 commit 0072045

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

.github/workflows/rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,11 +250,11 @@ jobs:
250250

251251
- uses: actions-rs/toolchain@v1
252252
with:
253-
toolchain: "1.65.0"
253+
toolchain: "1.67.0"
254254
override: true
255255

256256
- name: check if README matches MSRV defined here
257-
run: grep '1.65.0' src/core/README.md
257+
run: grep '1.67.0' src/core/README.md
258258

259259
- name: Check if it builds properly
260260
uses: actions-rs/cargo@v1

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sourmash"
3-
version = "0.12.1"
3+
version = "0.13.0"
44
authors = ["Luiz Irber <[email protected]>"]
55
description = "MinHash sketches for genomic data"
66
repository = "https://github.com/sourmash-bio/sourmash"
@@ -11,7 +11,7 @@ edition = "2021"
1111
readme = "README.md"
1212
autoexamples = false
1313
autobins = false
14-
rust-version = "1.65.0"
14+
rust-version = "1.67.0"
1515

1616
[lib]
1717
name = "sourmash"

src/core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ Development happens on github at
3838

3939
## Minimum supported Rust version
4040

41-
Currently the minimum supported Rust version is 1.65.0.
41+
Currently the minimum supported Rust version is 1.67.0.

src/core/src/errors.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
use thiserror::Error;
22

3+
#[non_exhaustive]
34
#[derive(Debug, Error)]
45
pub enum SourmashError {
56
/// Raised for internal errors in the libraries. Should not happen.

0 commit comments

Comments
 (0)