Skip to content

Commit dbda7d4

Browse files
authored
Update SDK version. (#58)
Update SDK version to v0.11.23.
1 parent ed7c483 commit dbda7d4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.devcontainer/setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

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

.github/workflows/cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
working-directory: ${{github.workspace}}
2929
run: |
3030
sdk_file='qrypt-security-ubuntu.tgz'
31-
curl -s https://qrypt.azureedge.net/sdk/cpp/v0.11.22/qrypt-security-0.11.22-ubuntu.tgz --output $sdk_file
31+
curl -s https://qrypt.azureedge.net/sdk/cpp/v0.11.23/qrypt-security-0.11.23-ubuntu.tgz --output $sdk_file
3232
tar -zxvf $sdk_file --strip-components=1 -C QryptSecurity
3333
rm -rf $sdk_file
3434

compose/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ WORKDIR /workspace/
2626

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

docs/QUICKSTART-BUILD.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Steps:
2626
1. [Create a Qrypt account for free](https://portal.qrypt.com/register).
2727
1. On the Qrypt portal, download the Qrypt SDK from "Products > Qrypt SDK" and save the .tgz to the repository root.
2828
1. (Optional) On the Qrypt portal, register a personal access token for keygen.
29-
1. `tar -zxvf qrypt-security-0.11.22-ubuntu.tgz --strip-components=1 -C QryptSecurity`
29+
1. `tar -zxvf qrypt-security-0.11.23-ubuntu.tgz --strip-components=1 -C QryptSecurity`
3030
1. `cmake . -B build`
3131
1. `cmake --build build`
3232
1. `./qrypt --help`

0 commit comments

Comments
 (0)