diff --git a/.resources/release-version b/.resources/release-version index 69fd868749..98610aa425 100644 --- a/.resources/release-version +++ b/.resources/release-version @@ -1 +1 @@ -v1.6.1 \ No newline at end of file +v1.6.2 \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 8f0c80a277..c45bc7e555 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "leo-lang" -version = "1.6.1" +version = "1.6.2" authors = [ "The Aleo Team " ] description = "The Leo programming language" homepage = "https://aleo.org" @@ -34,13 +34,9 @@ members = [ [workspace.dependencies.snarkvm] version = "0.9.11" -#git = "https://github.com/AleoHQ/snarkVM" -#rev = "6c009ef" [workspace.dependencies.snarkvm-console] version = "0.9.11" -#git = "https://github.com/AleoHQ/snarkVM" -#rev = "6c009ef" [lib] path = "leo/lib.rs" @@ -56,32 +52,30 @@ noconfig = [ ] [dependencies.aleo] version = "0.3.2" -#git = "https://github.com/AleoHQ/aleo" -#rev = "58a64b6" [dependencies.leo-ast] path = "./compiler/ast" -version = "1.6.1" +version = "1.6.2" [dependencies.leo-compiler] path = "./compiler/compiler" -version = "1.6.1" +version = "1.6.2" [dependencies.leo-errors] path = "./errors" -version = "1.6.1" +version = "1.6.2" [dependencies.leo-package] path = "./leo/package" -version = "1.6.1" +version = "1.6.2" [dependencies.leo-parser] path = "./compiler/parser" -version = "1.6.1" +version = "1.6.2" [dependencies.leo-span] path = "./compiler/span" -version = "1.6.1" +version = "1.6.2" [dependencies.backtrace] version = "0.3.66" diff --git a/compiler/ast/Cargo.toml b/compiler/ast/Cargo.toml index 9426ae2797..a530a1e93c 100644 --- a/compiler/ast/Cargo.toml +++ b/compiler/ast/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "leo-ast" -version = "1.6.1" +version = "1.6.2" authors = [ "The Aleo Team " ] description = "Abstract syntax tree (AST) for the Leo programming language" homepage = "https://aleo.org" @@ -20,11 +20,11 @@ rust-version = "1.65" [dependencies.leo-errors] path = "../../errors" -version = "1.6.1" +version = "1.6.2" [dependencies.leo-span] path = "../span" -version = "1.6.1" +version = "1.6.2" [dependencies.indexmap] version = "1.9" diff --git a/compiler/compiler/Cargo.toml b/compiler/compiler/Cargo.toml index a8a0c88c14..cc1d4ca57b 100644 --- a/compiler/compiler/Cargo.toml +++ b/compiler/compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "leo-compiler" -version = "1.6.1" +version = "1.6.2" authors = [ "The Aleo Team " ] description = "Compiler for Leo programming language" homepage = "https://aleo.org" @@ -20,23 +20,23 @@ rust-version = "1.65" [dependencies.leo-ast] path = "../ast" -version = "1.6.1" +version = "1.6.2" [dependencies.leo-errors] path = "../../errors" -version = "1.6.1" +version = "1.6.2" [dependencies.leo-passes] path = "../passes" -version = "1.6.1" +version = "1.6.2" [dependencies.leo-parser] path = "../parser" -version = "1.6.1" +version = "1.6.2" [dependencies.leo-span] path = "../span" -version = "1.6.1" +version = "1.6.2" [dependencies.sha2] version = "0.10" diff --git a/compiler/core/Cargo.toml b/compiler/core/Cargo.toml index 34a238b9d0..8cef929ea4 100644 --- a/compiler/core/Cargo.toml +++ b/compiler/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "leo-core" -version = "1.6.1" +version = "1.6.2" authors = [ "The Aleo Team " ] description = "Core library functions for the Leo programming language" homepage = "https://aleo.org" @@ -23,12 +23,12 @@ path = "src/lib.rs" [dependencies.leo-ast] path = "../ast" -version = "1.6.1" +version = "1.6.2" [dependencies.leo-errors] path = "../../errors" -version = "1.6.1" +version = "1.6.2" [dependencies.leo-span] path = "../span" -version = "1.6.1" +version = "1.6.2" diff --git a/compiler/parser/Cargo.toml b/compiler/parser/Cargo.toml index feb80d9301..45e10d9e18 100644 --- a/compiler/parser/Cargo.toml +++ b/compiler/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "leo-parser" -version = "1.6.1" +version = "1.6.2" authors = [ "The Aleo Team " ] description = "Parser for the Leo programming language" homepage = "https://aleo.org" @@ -20,15 +20,15 @@ rust-version = "1.65" [dependencies.leo-ast] path = "../ast" -version = "1.6.1" +version = "1.6.2" [dependencies.leo-errors] path = "../../errors" -version = "1.6.1" +version = "1.6.2" [dependencies.leo-span] path = "../span" -version = "1.6.1" +version = "1.6.2" [dependencies.snarkvm-console] workspace = true diff --git a/compiler/passes/Cargo.toml b/compiler/passes/Cargo.toml index c2f7ac5224..2d005583e4 100644 --- a/compiler/passes/Cargo.toml +++ b/compiler/passes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "leo-passes" -version = "1.6.1" +version = "1.6.2" authors = [ "The Aleo Team " ] description = "Compiler passes for the Leo programming language" homepage = "https://aleo.org" @@ -26,23 +26,23 @@ version = "1.9" [dependencies.leo-ast] path = "../ast" -version = "1.6.1" +version = "1.6.2" [dependencies.leo-errors] path = "../../errors" -version = "1.6.1" +version = "1.6.2" [dependencies.leo-parser] path = "../parser" -version = "1.6.1" +version = "1.6.2" [dependencies.leo-span] path = "../span" -version = "1.6.1" +version = "1.6.2" [dependencies.leo-core] path = "../core" -version = "1.6.1" +version = "1.6.2" [dependencies.itertools] version = "0.10.5" diff --git a/compiler/span/Cargo.toml b/compiler/span/Cargo.toml index d745dd821e..206cd1216b 100644 --- a/compiler/span/Cargo.toml +++ b/compiler/span/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "leo-span" -version = "1.6.1" +version = "1.6.2" authors = [ "The Aleo Team " ] description = "Span handling for the Leo programming language" homepage = "https://aleo.org" diff --git a/docs/grammar/Cargo.toml b/docs/grammar/Cargo.toml index 67e8a736ff..9a059c5fbd 100644 --- a/docs/grammar/Cargo.toml +++ b/docs/grammar/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "leo-abnf" -version = "1.6.1" +version = "1.6.2" authors = [ "The Aleo Team " ] description = "ABNF to Markdown converter for the Leo programming language" homepage = "https://aleo.org" diff --git a/errors/Cargo.toml b/errors/Cargo.toml index 3df732686f..436bf57d5b 100644 --- a/errors/Cargo.toml +++ b/errors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "leo-errors" -version = "1.6.1" +version = "1.6.2" authors = [ "The Aleo Team " ] description = "Errors for the Leo programming language" homepage = "https://aleo.org" @@ -20,7 +20,7 @@ rust-version = "1.65" [dependencies.leo-span] path = "../compiler/span" -version = "1.6.1" +version = "1.6.2" [dependencies.anyhow] version = "1.0" diff --git a/leo/package/Cargo.toml b/leo/package/Cargo.toml index fcb3d0cb5b..6f2d42a70f 100644 --- a/leo/package/Cargo.toml +++ b/leo/package/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "leo-package" -version = "1.6.1" +version = "1.6.2" authors = [ "The Aleo Team " ] description = "Package parser for the Leo programming language" homepage = "https://aleo.org" @@ -20,7 +20,7 @@ rust-version = "1.65" [dependencies.leo-errors] path = "../../errors" -version = "1.6.1" +version = "1.6.2" [dependencies.indexmap] version = "1.9" diff --git a/tests/test-framework/Cargo.toml b/tests/test-framework/Cargo.toml index 444036cb8a..35e7cc8154 100644 --- a/tests/test-framework/Cargo.toml +++ b/tests/test-framework/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "leo-test-framework" -version = "1.6.1" +version = "1.6.2" authors = [ "The Aleo Team " ] description = "The testing framework for the Leo programming language" homepage = "https://aleo.org" @@ -24,7 +24,7 @@ harness = false [dependencies.leo-errors] path = "../../errors" -version = "1.6.1" +version = "1.6.2" [dependencies.backtrace] version = "0.3.66"