-
Notifications
You must be signed in to change notification settings - Fork 656
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(leo): bump version for new release
- Loading branch information
Showing
16 changed files
with
55 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v1.5.1 | ||
v1.5.2 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "leo-lang" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "The Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
@@ -43,31 +43,31 @@ members = [ | |
|
||
[dependencies.leo-ast] | ||
path = "./ast" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
|
||
[dependencies.leo-compiler] | ||
path = "./compiler" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
|
||
[dependencies.leo-imports] | ||
path = "./imports" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
|
||
[dependencies.leo-input] | ||
path = "./input" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
|
||
[dependencies.leo-package] | ||
path = "./package" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
|
||
[dependencies.leo-state] | ||
path = "./state" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
|
||
[dependencies.leo-synthesizer] | ||
path = "./synthesizer" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
|
||
[dependencies.snarkvm-algorithms] | ||
version = "0.5.4" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "leo-asg-passes" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "The Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
@@ -22,4 +22,4 @@ path = "src/lib.rs" | |
|
||
[dependencies.leo-asg] | ||
path = "../asg" | ||
version = "1.5.1" | ||
version = "1.5.2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "leo-asg" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "ASG of the Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
@@ -30,11 +30,11 @@ version = "1.6" | |
version = "1.0" | ||
|
||
[dependencies.leo-ast] | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
path = "../ast" | ||
|
||
[dependencies.leo-parser] | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
path = "../parser" | ||
|
||
[dependencies.num-bigint] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "leo-ast" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "Core AST of the Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
@@ -19,7 +19,7 @@ edition = "2018" | |
|
||
[dependencies.leo-input] | ||
path = "../input" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
|
||
[dependencies.indexmap] | ||
version = "1.6.2" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "leo-compiler" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "Compiler of the Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
@@ -19,39 +19,39 @@ edition = "2018" | |
|
||
[dependencies.leo-ast] | ||
path = "../ast" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
|
||
[dependencies.leo-imports] | ||
path = "../imports" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
|
||
[dependencies.leo-input] | ||
path = "../input" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
|
||
[dependencies.leo-package] | ||
path = "../package" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
|
||
[dependencies.leo-state] | ||
path = "../state" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
|
||
[dependencies.leo-asg] | ||
path = "../asg" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
|
||
[dependencies.leo-parser] | ||
path = "../parser" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
|
||
[dependencies.leo-asg-passes] | ||
path = "../asg-passes" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
|
||
[dependencies.leo-synthesizer] | ||
path = "../synthesizer" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
|
||
[dependencies.tendril] | ||
version = "0.4" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "leo-abnf" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "ABNF to Markdown converter for the Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "leo-imports" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "Import parser for Leo program package dependencies" | ||
homepage = "https://aleo.org" | ||
|
@@ -19,15 +19,15 @@ edition = "2018" | |
|
||
[dependencies.leo-ast] | ||
path = "../ast" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
|
||
[dependencies.leo-asg] | ||
path = "../asg" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
|
||
[dependencies.leo-parser] | ||
path = "../parser" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
|
||
[dependencies.indexmap] | ||
version = "1.6.2" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "leo-input" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "Input parser of the Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ dependencies = { } | |
|
||
[package] | ||
name = "leo-linter" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "Linter of the Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "leo-package" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "Package parser of the Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "leo-parser" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "AST generated by pest from the Leo grammar rules" | ||
homepage = "https://aleo.org" | ||
|
@@ -24,7 +24,7 @@ harness = false | |
|
||
[dependencies.leo-ast] | ||
path = "../ast" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
|
||
[dependencies.lazy_static] | ||
version = "1.3.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "leo-state" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "State parser of the Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
@@ -19,11 +19,11 @@ edition = "2018" | |
|
||
[dependencies.leo-input] | ||
path = "../input" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
|
||
[dependencies.leo-ast] | ||
path = "../ast" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
|
||
[dependencies.snarkvm-algorithms] | ||
version = "0.5.4" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "leo-synthesizer" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "Circuit synthesizer of the Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "leo-test-framework" | ||
version = "1.5.1" | ||
version = "1.5.2" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "Leo testing framework" | ||
homepage = "https://aleo.org" | ||
|