Skip to content

Commit

Permalink
Merge pull request #247 from andrewwhitehead/upd/ver-041
Browse files Browse the repository at this point in the history
Update python wrapper version to 0.4.1, proxy to 0.1.5
  • Loading branch information
swcurran authored Dec 18, 2023
2 parents 83f3507 + 0d97507 commit c4b558c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- if: ${{ runner.os == 'Linux' }}
name: Pre-install cross
run: |
cargo install --bins --git https://github.com/rust-embedded/cross --tag v${{ env.CROSS_VERSION }} cross
cargo install --bins --git https://github.com/rust-embedded/cross --locked --tag v${{ env.CROSS_VERSION }} cross
test-suite:
name: Run Test Suite
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
- if: ${{ matrix.use_cross }}
name: Build (cross)
run: |
cargo install --bins --git https://github.com/rust-embedded/cross --tag v${{ env.CROSS_VERSION }} cross
cargo install --bins --git https://github.com/rust-embedded/cross --locked --tag v${{ env.CROSS_VERSION }} cross
cross build --lib --release --target ${{ matrix.target }}
- if: ${{ !matrix.use_cross && matrix.architecture == 'darwin-universal' }}
Expand Down Expand Up @@ -379,7 +379,7 @@ jobs:

- name: Build
run: |
cargo install --bins --git https://github.com/rust-embedded/cross --tag v${{ env.CROSS_VERSION }} cross
cargo install --bins --git https://github.com/rust-embedded/cross --locked --tag v${{ env.CROSS_VERSION }} cross
cross build --lib --release --target ${{matrix.target}} --package indy-vdr
- name: Save library
Expand Down
8 changes: 4 additions & 4 deletions indy-vdr-proxy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "indy-vdr-proxy"
version = "0.1.4"
version = "0.1.5"
authors = [
"Hyperledger Indy Contributors <hyperledger-indy@lists.hyperledger.org>",
]
Expand All @@ -10,7 +10,7 @@ rust-version = "1.63"
license = "Apache-2.0"

[features]
fetch = ["hyper-tls", "hyper/client"]
fetch = ["hyper/client", "hyper-tls"]
zmq_vendored = ["indy-vdr/zmq_vendored"]
tls = ["rustls-pemfile", "tokio-rustls", "hyper/stream"]
default = ["fetch", "zmq_vendored"]
Expand All @@ -29,11 +29,11 @@ hyper-tls = { version = "0.5", optional = true }
log = "0.4.8"
percent-encoding = "2"
regex = "1.5.4"
rustls-pemfile = { version = "1.0.3", optional = true }
serde_json = "1.0"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "signal"] }
tokio-rustls = { version = "0.24", optional = true }
url = "2.2.2"
rustls-pemfile = { version = "1.0.3", optional = true }
tokio-rustls = { version = "0.24.1", optional = true }

[target.'cfg(unix)'.dependencies]
hyper-unix-connector = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion wrappers/python/indy_vdr/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""indy_vdr library wrapper version."""

__version__ = "0.4.0"
__version__ = "0.4.1"

0 comments on commit c4b558c

Please sign in to comment.