Skip to content

Commit

Permalink
Bump versions for publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
sbihel committed Aug 1, 2024
1 parent bd79b16 commit 94743ca
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 13 deletions.
21 changes: 15 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ssi"
version = "0.8.0"
version = "0.8.1"
authors = ["Spruce Systems, Inc."]
edition = "2021"
license = "Apache-2.0"
Expand All @@ -19,7 +19,7 @@ members = [
"crates/claims/core",
"crates/claims/crates/*",
"crates/claims/crates/data-integrity/core",
"crates/claims/crates/data-integrity/suites"
"crates/claims/crates/data-integrity/suites",
]

[workspace.dependencies]
Expand Down Expand Up @@ -76,7 +76,7 @@ blake2 = "0.10"
sha2 = "0.10.0"
sha3 = "0.10.8"
rsa = "0.6"
zkryptium = "0.2.2" # BBS
zkryptium = "0.2.2" # BBS

# other common dependencies
log = "0.4.21"
Expand Down Expand Up @@ -112,7 +112,15 @@ indexmap = "2.0.0"
uuid = "1.9"

[features]
default = ["w3c", "rsa", "ed25519", "secp256k1", "secp256r1", "ripemd-160", "eip712"]
default = [
"w3c",
"rsa",
"ed25519",
"secp256k1",
"secp256r1",
"ripemd-160",
"eip712",
]

## Signature suites specified by the W3C.
##
Expand Down Expand Up @@ -233,7 +241,7 @@ ssi-zcap-ld.workspace = true
ssi-multicodec.workspace = true
ssi-ssh.workspace = true
ssi-bbs = { workspace = true, optional = true }
xsd-types.workspace = true # public reexport
xsd-types.workspace = true # public reexport
document-features = "0.2"

[dev-dependencies]
Expand All @@ -255,4 +263,5 @@ rustdoc-args = ["--cfg", "docsrs"]
sign-tag = true
tag-prefix = "{{crate_name}}/"
tag-message = "Release {{crate_name}} version {{version}}."
pre-release-commit-message = "Release"
pre-release-commit-message = "Release"

5 changes: 3 additions & 2 deletions crates/claims/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ssi-claims-core"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
authors = ["Spruce Systems, Inc."]
license = "Apache-2.0"
Expand Down Expand Up @@ -35,4 +35,5 @@ ssi-json-ld.workspace = true
ssi-eip712.workspace = true

serde = { workspace = true, optional = true }
linked-data = { workspace = true, optional = true }
linked-data = { workspace = true, optional = true }

2 changes: 1 addition & 1 deletion crates/claims/crates/data-integrity/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ssi-data-integrity-core"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
authors = ["Spruce Systems, Inc."]
license = "Apache-2.0"
Expand Down
14 changes: 11 additions & 3 deletions crates/claims/crates/jws/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ssi-jws"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
authors = ["Spruce Systems, Inc."]
license = "Apache-2.0"
Expand All @@ -12,7 +12,14 @@ documentation = "https://docs.rs/ssi-jws/"
default = ["secp256k1", "secp256r1", "ed25519", "rsa"]

## Enable secp256k1 signatures.
secp256k1 = ["ssi-jwk/secp256k1", "k256", "ssi-crypto/secp256k1", "blake2", "dep:sha2", "dep:sha3"]
secp256k1 = [
"ssi-jwk/secp256k1",
"k256",
"ssi-crypto/secp256k1",
"blake2",
"dep:sha2",
"dep:sha3",
]

## Enable secp256r1 (p256) signatures.
secp256r1 = ["ssi-jwk/secp256r1", "p256", "blake2"]
Expand Down Expand Up @@ -72,4 +79,5 @@ clear_on_drop = { version = "0.2.4", features = ["no_cc"] }

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
rustdoc-args = ["--cfg", "docsrs"]

2 changes: 1 addition & 1 deletion crates/claims/crates/jwt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ssi-jwt"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
authors = ["Spruce Systems, Inc."]
license = "Apache-2.0"
Expand Down

0 comments on commit 94743ca

Please sign in to comment.