From d6c39d09957891418fdf6e609342affe6381b202 Mon Sep 17 00:00:00 2001 From: Michael Turner Date: Wed, 29 Mar 2023 19:15:50 -0500 Subject: [PATCH 1/3] Add proper fee --- Cargo.toml | 2 +- rust/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 925f120a5..b3f541765 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,7 @@ default = [ ] [dependencies.aleo-rust] path = "rust" -version = "0.3.5" +version = "0.3.6" [dependencies.anyhow] version = "1.0" diff --git a/rust/README.md b/rust/README.md index edaae398e..533ae74b6 100644 --- a/rust/README.md +++ b/rust/README.md @@ -108,7 +108,7 @@ program_manager.add_program(&program).unwrap(); // Create a record finder to find records to fund the deployment fee let record_finder = RecordFinder::::new(AleoAPIClient::testnet3()); // Set the fee for the deployment transaction (in units of gates) -let fee_gates = 300000; +let fee_gates = 600000; // Find a record to fund the deployment fee (requires an account with a balance) let record = record_finder.find_one_record(&private_key, fee_gates).unwrap(); // Deploy the program to the network From 6f51da9e078572e7dc0b902b268ba22ca8108147 Mon Sep 17 00:00:00 2001 From: Michael Turner Date: Wed, 29 Mar 2023 19:22:56 -0500 Subject: [PATCH 2/3] Add wasm description --- Cargo.lock | 2 +- wasm/Cargo.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 533552a3b..83e533435 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -134,7 +134,7 @@ checksum = "7e4f181fc1a372e8ceff89612e5c9b13f72bff5b066da9f8d6827ae65af492c4" [[package]] name = "aleo-wasm" -version = "0.3.5" +version = "0.3.6" dependencies = [ "aleo-rust", "anyhow", diff --git a/wasm/Cargo.toml b/wasm/Cargo.toml index 546f18ddb..2c8db7524 100644 --- a/wasm/Cargo.toml +++ b/wasm/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "aleo-wasm" -version = "0.3.5" +version = "0.3.6" authors = [ "The Aleo Team " ] -description = "Aleo" +description = "Toolkit for exporting key Aleo functionality and cryptography to WebAssembly" homepage = "https://aleo.org" repository = "https://github.com/AleoHQ/aleo" keywords = [ @@ -21,7 +21,7 @@ edition = "2021" crate-type = [ "cdylib", "rlib" ] [dependencies.aleo-rust] -version = "0.3.4" +version = "0.3.6" path = "../rust" features = [ "wasm" ] default-features = false From dac46f7674b41627ed4b5e4840aa5b6ca65855a5 Mon Sep 17 00:00:00 2001 From: Michael Turner Date: Thu, 30 Mar 2023 09:34:03 -0500 Subject: [PATCH 3/3] Apply github windows release action fix --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 76886267b..7271d899c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -174,7 +174,7 @@ jobs: - name: Zip run: | - Compress-Archive target/release/aleo.exe aleo-${{ steps.get_version.outputs.version }}-x86_64-pc-windows-msvc.zip + Compress-Archive target/release/aleo.exe aleo-${{ steps.get_version.outputs.version }}-x86_64-pc-windows-gnu.zip - name: Release uses: softprops/action-gh-release@v1