Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.5 #379

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
bump versions due to publish error
mmagician committed Oct 28, 2024
commit b34f11d670c2667de3eda6e33daed8027f35043e
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.5.0"
version = "0.5.1"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't this be "0.5.0"?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I had an accidental abort during the release of 0.5 for this crate, and it ended in a weird half-published state on crates.io

authors = [ "arkworks contributors" ]
homepage = "https://arkworks.rs"
repository = "https://github.com/arkworks-rs/snark"
2 changes: 1 addition & 1 deletion snark/Cargo.toml
Original file line number Diff line number Diff line change
@@ -16,4 +16,4 @@ edition.workspace = true
ark-ff.workspace = true
ark-std.workspace = true
ark-serialize.workspace = true
ark-relations = { version = "0.5.0", path = "../relations", default-features = false }
ark-relations = { version = "0.5", path = "../relations", default-features = false }

Unchanged files with check annotations Beta

//! This crate contains traits that define the basic behaviour of SNARKs.
#![cfg_attr(not(feature = "std"), no_std)]

Check failure on line 3 in snark/src/lib.rs

GitHub Actions / Test (nightly)

unexpected `cfg` condition value: `std`

Check warning on line 3 in snark/src/lib.rs

GitHub Actions / Check no_std

unexpected `cfg` condition value: `std`
#![warn(
unused,
future_incompatible,