Skip to content

Commit

Permalink
Merge pull request #215 from andrewwhitehead/upd/ver04
Browse files Browse the repository at this point in the history
Update versions to 0.4.0
  • Loading branch information
andrewwhitehead committed Sep 15, 2023
2 parents 6ee5f82 + 20529d9 commit a4d6933
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: "Indy-VDR"

env:
RUST_VERSION: "1.65.0"
RUST_VERSION: "1.70.0"
CROSS_VERSION: "0.2.4"

on:
Expand Down Expand Up @@ -359,6 +359,8 @@ jobs:
name: Build library (Android)
needs: [checks]
# NB: RUST_VERSION must be <1.68 here to support NDK 17
env:
RUST_VERSION: "1.67"

runs-on: ubuntu-latest
strategy:
Expand All @@ -383,7 +385,7 @@ jobs:
- name: Build
run: |
cargo install --bins --git https://github.com/rust-embedded/cross --tag v${{ env.CROSS_VERSION }} cross
cross build --release --target ${{matrix.target}} --package indy-vdr
cross build --lib --release --target ${{matrix.target}} --package indy-vdr
- name: Save library
uses: actions/upload-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion libindy_vdr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "indy-vdr"
version = "0.4.0-dev.16"
version = "0.4.0"
authors = [
"Hyperledger Indy Contributors <hyperledger-indy@lists.hyperledger.org>",
]
Expand Down
2 changes: 1 addition & 1 deletion wrappers/javascript/indy-vdr-nodejs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"binary": {
"module_name": "indy_vdr",
"module_path": "native",
"remote_path": "v0.4.0-dev.16",
"remote_path": "v0.4.0",
"host": "https://github.com/hyperledger/indy-vdr/releases/download/",
"package_name": "library-{platform}-{arch}.tar.gz"
},
Expand Down
2 changes: 1 addition & 1 deletion wrappers/javascript/indy-vdr-react-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"binary": {
"module_name": "indy_vdr",
"module_path": "native",
"remote_path": "v0.4.0-dev.16",
"remote_path": "v0.4.0",
"host": "https://github.com/hyperledger/indy-vdr/releases/download/",
"package_name": "library-ios-android.tar.gz"
}
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.dev16"
__version__ = "0.4.0"

0 comments on commit a4d6933

Please sign in to comment.