Skip to content

Commit

Permalink
update versions
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Whitehead <[email protected]>
  • Loading branch information
andrewwhitehead committed Mar 12, 2023
1 parent e1eaf32 commit 7843fed
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Indy-VDR"
name: "Indy-Credx"

env:
RUST_VERSION: "1.60.0"
Expand Down Expand Up @@ -91,8 +91,8 @@ jobs:
- name: Test indy-utils
run: cargo test --manifest-path indy-utils/Cargo.toml

- name: Test indy-data-types (CL)
run: cargo test --manifest-path indy-data-types/Cargo.toml --features cl
# - name: Test indy-data-types (CL)
# run: cargo test --manifest-path indy-data-types/Cargo.toml --features cl

- name: Test indy-data-types (CL-native)
run: cargo test --manifest-path indy-data-types/Cargo.toml --features cl_native,vendored
Expand Down
6 changes: 3 additions & 3 deletions indy-credx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "indy-credx"
version = "0.3.1"
version = "0.3.2"
authors = ["Hyperledger Indy Contributors <[email protected]>"]
description = "Verifiable credential issuance and presentation for Hyperledger Indy (https://www.hyperledger.org/projects), which provides a distributed-ledger-based foundation for self-sovereign identity (https://sovrin.org)."
edition = "2018"
Expand All @@ -22,7 +22,7 @@ logger = ["env_logger"]
vendored = ["indy-data-types/vendored"]

[dependencies]
env_logger = { version = "0.7.1", optional = true }
env_logger = { version = "0.9", optional = true }
ffi-support = { version = "0.4.0", optional = true }
log = "0.4"
once_cell = "1.9"
Expand All @@ -36,7 +36,7 @@ thiserror = "1.0"
zeroize = { version = "1.3", optional = true }

[dependencies.indy-data-types]
version = "0.5"
version = "0.5.2"
path = "../indy-data-types"
features = ["cl_native"]

Expand Down
6 changes: 3 additions & 3 deletions indy-data-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "indy-data-types"
version = "0.5.1"
version = "0.5.2"
authors = ["Hyperledger Indy Contributors <[email protected]>"]
description = "Common data types for Hyperledger Indy (https://www.hyperledger.org/projects), which provides a distributed-ledger-based foundation for self-sovereign identity (https://sovrin.org)."
edition = "2018"
Expand All @@ -21,7 +21,7 @@ cl = ["serde_support", "ursa", "ursa/cl", "ursa/serde"]
cl_native = ["serde_support", "ursa", "ursa/cl_native", "ursa/serde"]
merkle_tree = ["indy-utils/hash", "hex"]
rich_schema = []
serde_support = ["serde", "serde_json"]
serde_support = ["serde", "serde_json", "indy-utils/serde"]
vendored = ["openssl", "openssl/vendored", "openssl-src"]

[dependencies]
Expand All @@ -32,7 +32,7 @@ once_cell = "1.9"
regex = "1.3"
serde = { version = "1.0", optional = true, features = ["derive"] }
serde_json = { version = "1.0", optional = true, features = ["raw_value"] }
ursa = { version = "0.3.7", default-features = false, optional = true }
ursa = { version = "0.3", default-features = false, optional = true }
zeroize = { version = "1.1", features = ["zeroize_derive"] }

[dependencies.indy-utils]
Expand Down
4 changes: 2 additions & 2 deletions indy-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "indy-utils"
version = "0.5.1"
version = "0.5.2"
authors = ["Hyperledger Indy Contributors <[email protected]>"]
description = "Utilities for Hyperledger Indy (https://www.hyperledger.org/projects), which provides a distributed-ledger-based foundation for self-sovereign identity (https://sovrin.org)."
edition = "2018"
Expand Down Expand Up @@ -33,7 +33,7 @@ rand = { version = "0.8", optional = true }
regex = "1.3"
serde = { version = "1.0", optional = true, features = ["derive"] }
serde_json = { version = "1.0", optional = true }
sha2 = { version = "0.10", optional = true }
sha2 = { version = "0.9", optional = true }
thiserror = "1.0"
x25519-dalek = { version = "=1.2", default-features = false, features = ["u64_backend"], optional = true }
zeroize = { version = "1.3" }
Expand Down
2 changes: 1 addition & 1 deletion indy-utils/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ define_error!(
"Error type for failures of `Validatable::validate`"
);

#[cfg(feature = "serde")]
#[cfg(feature = "serde_json")]
impl From<serde_json::error::Error> for ConversionError {
fn from(err: serde_json::error::Error) -> Self {
Self::from_msg(err.to_string())
Expand Down
2 changes: 1 addition & 1 deletion wrappers/python/indy_credx/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""indy_credx library wrapper version."""

__version__ = "0.3.1"
__version__ = "0.3.2"

0 comments on commit 7843fed

Please sign in to comment.