diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f34c63d..dcf8622 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -56,6 +56,9 @@ jobs: - name: Cargo check run: cargo check --workspace --features vendored + - name: Cargo check no default features + run: cargo check --package indy-data-types --no-default-features + - if: ${{ runner.os == 'Linux' }} name: Pre-install cross run: | diff --git a/indy-credx/Cargo.toml b/indy-credx/Cargo.toml index 01cfa34..18b7282 100644 --- a/indy-credx/Cargo.toml +++ b/indy-credx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "indy-credx" -version = "1.0.1" +version = "1.0.2" authors = ["Hyperledger Indy Contributors "] 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 = "2021" diff --git a/wrappers/python/indy_credx/version.py b/wrappers/python/indy_credx/version.py index 7046e1d..bd293f6 100644 --- a/wrappers/python/indy_credx/version.py +++ b/wrappers/python/indy_credx/version.py @@ -1,3 +1,3 @@ """indy_credx library wrapper version.""" -__version__ = "1.0.0" +__version__ = "1.0.2"