Skip to content

Commit

Permalink
Bump aleo-sdk version to 0.5.11
Browse files Browse the repository at this point in the history
  • Loading branch information
iamalwaysuncomfortable committed Oct 3, 2023
1 parent a53968a commit 4c94922
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 31 deletions.
26 changes: 0 additions & 26 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,32 +152,6 @@ jobs:
- clear_environment:
cache_key: aleo-clippy-cache

aleo-sdk-integration-tests:
docker:
- image: cimg/rust:1.71.1-node
resource_class: xlarge
steps:
- checkout
- setup_environment:
cache_key: aleo-executable-cache
- run:
name: Aleo SDK Integration Tests
no_output_timeout: 30m
command: |
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
cd wasm
wasm-pack build --target nodejs -- --features serial --no-default-features
cd ..
sudo npm install --global typescript
cargo install snarkos
snarkos start --dev 0 --beacon --nodisplay 1> /dev/null &
snarkos start --dev 1 --beacon --nodisplay 1> /dev/null &
snarkos start --dev 2 --beacon --nodisplay 1> /dev/null &
snarkos start --dev 3 --beacon --nodisplay 1> /dev/null &
cd sdk && npm install
sleep 200
npm run integration
workflows:
version: 2

Expand Down
6 changes: 3 additions & 3 deletions sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aleohq/sdk",
"version": "0.5.10",
"version": "0.5.11",
"description": "A Software Development Kit (SDK) for Zero-Knowledge Transactions",
"collaborators": [
"The Aleo Team <[email protected]>"
Expand Down Expand Up @@ -38,8 +38,8 @@
},
"homepage": "https://github.com/AleoHQ/sdk#readme",
"dependencies": {
"@aleohq/nodejs": "file:../wasm/pkg",
"@aleohq/wasm": "file:../wasm/pkg-parallel",
"@aleohq/nodejs": "0.5.10",
"@aleohq/wasm": "0.5.10",
"axios": "^1.1.3",
"comlink": "^4.4.1",
"jsdoc": "^3.6.11",
Expand Down
4 changes: 2 additions & 2 deletions sdk/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export {
};

// If using the SDK in a browser context, uncomment this line and run `npm run build:browser`
export * from './browser';
// export * from './browser';

// The following imports and exports are for a NodeJS context - if using the SDK in a browser context, delete or comment out this line
//export * from './node';
export * from './node';

0 comments on commit 4c94922

Please sign in to comment.