Skip to content

Commit

Permalink
bump msrv...
Browse files Browse the repository at this point in the history
  • Loading branch information
luizirber committed Feb 18, 2024
1 parent c6c3b25 commit 0072045
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,11 +250,11 @@ jobs:

- uses: actions-rs/toolchain@v1
with:
toolchain: "1.65.0"
toolchain: "1.67.0"
override: true

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

- name: Check if it builds properly
uses: actions-rs/cargo@v1
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sourmash"
version = "0.12.1"
version = "0.13.0"
authors = ["Luiz Irber <luiz.irber@gmail.com>"]
description = "MinHash sketches for genomic data"
repository = "https://github.com/sourmash-bio/sourmash"
Expand All @@ -11,7 +11,7 @@ edition = "2021"
readme = "README.md"
autoexamples = false
autobins = false
rust-version = "1.65.0"
rust-version = "1.67.0"

[lib]
name = "sourmash"
Expand Down
2 changes: 1 addition & 1 deletion src/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ Development happens on github at

## Minimum supported Rust version

Currently the minimum supported Rust version is 1.65.0.
Currently the minimum supported Rust version is 1.67.0.
1 change: 1 addition & 0 deletions src/core/src/errors.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use thiserror::Error;

#[non_exhaustive]
#[derive(Debug, Error)]
pub enum SourmashError {
/// Raised for internal errors in the libraries. Should not happen.
Expand Down

0 comments on commit 0072045

Please sign in to comment.