Skip to content

Commit

Permalink
[Fix] Release Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
iamalwaysuncomfortable committed Mar 30, 2023
2 parents dbdef75 + dac46f7 commit d2d81d2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ default = [ ]

[dependencies.aleo-rust]
path = "rust"
version = "0.3.5"
version = "0.3.6"

[dependencies.anyhow]
version = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion rust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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::<Testnet3>::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
Expand Down
6 changes: 3 additions & 3 deletions wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "aleo-wasm"
version = "0.3.5"
version = "0.3.6"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "Aleo"
description = "Toolkit for exporting key Aleo functionality and cryptography to WebAssembly"
homepage = "https://aleo.org"
repository = "https://github.com/AleoHQ/aleo"
keywords = [
Expand All @@ -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
Expand Down

0 comments on commit d2d81d2

Please sign in to comment.