Skip to content

Commit

Permalink
Update SDK version. (QryptInc#58)
Browse files Browse the repository at this point in the history
Update SDK version to v0.11.23.
  • Loading branch information
qryptdev authored May 31, 2024
1 parent ed7c483 commit dbda7d4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/setup.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

sdk_file='qrypt-security-ubuntu.tgz'
curl -s https://qrypt.azureedge.net/sdk/cpp/v0.11.22/qrypt-security-0.11.22-ubuntu.tgz --output $sdk_file
curl -s https://qrypt.azureedge.net/sdk/cpp/v0.11.23/qrypt-security-0.11.23-ubuntu.tgz --output $sdk_file
tar -zxvf $sdk_file --strip-components=1 -C QryptSecurity
rm -rf $sdk_file

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
working-directory: ${{github.workspace}}
run: |
sdk_file='qrypt-security-ubuntu.tgz'
curl -s https://qrypt.azureedge.net/sdk/cpp/v0.11.22/qrypt-security-0.11.22-ubuntu.tgz --output $sdk_file
curl -s https://qrypt.azureedge.net/sdk/cpp/v0.11.23/qrypt-security-0.11.23-ubuntu.tgz --output $sdk_file
tar -zxvf $sdk_file --strip-components=1 -C QryptSecurity
rm -rf $sdk_file
Expand Down
2 changes: 1 addition & 1 deletion compose/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ WORKDIR /workspace/

# Download SDK
RUN sdk_file='qrypt-security-ubuntu.tgz' && \
curl -s https://qrypt.azureedge.net/sdk/cpp/v0.11.22/qrypt-security-0.11.22-ubuntu.tgz --output $sdk_file && \
curl -s https://qrypt.azureedge.net/sdk/cpp/v0.11.23/qrypt-security-0.11.23-ubuntu.tgz --output $sdk_file && \
tar -zxvf $sdk_file --strip-components=1 -C QryptSecurity && \
rm -rf $sdk_file

Expand Down
2 changes: 1 addition & 1 deletion docs/QUICKSTART-BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Steps:
1. [Create a Qrypt account for free](https://portal.qrypt.com/register).
1. On the Qrypt portal, download the Qrypt SDK from "Products > Qrypt SDK" and save the .tgz to the repository root.
1. (Optional) On the Qrypt portal, register a personal access token for keygen.
1. `tar -zxvf qrypt-security-0.11.22-ubuntu.tgz --strip-components=1 -C QryptSecurity`
1. `tar -zxvf qrypt-security-0.11.23-ubuntu.tgz --strip-components=1 -C QryptSecurity`
1. `cmake . -B build`
1. `cmake --build build`
1. `./qrypt --help`
Expand Down

0 comments on commit dbda7d4

Please sign in to comment.