-
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
13 changed files
with
63 additions
and
44 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.8.0 | ||
v1.8.1 |
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.8.0" | ||
version = "1.8.1" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "The Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
@@ -50,27 +50,27 @@ noconfig = [ ] | |
|
||
[dependencies.leo-ast] | ||
path = "./compiler/ast" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
|
||
[dependencies.leo-compiler] | ||
path = "./compiler/compiler" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
|
||
[dependencies.leo-errors] | ||
path = "./errors" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
|
||
[dependencies.leo-package] | ||
path = "./leo/package" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
|
||
[dependencies.leo-parser] | ||
path = "./compiler/parser" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
|
||
[dependencies.leo-span] | ||
path = "./compiler/span" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
|
||
[dependencies.backtrace] | ||
version = "0.3.67" | ||
|
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.8.0" | ||
version = "1.8.1" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "Abstract syntax tree (AST) for the Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
@@ -20,11 +20,11 @@ rust-version = "1.69" | |
|
||
[dependencies.leo-errors] | ||
path = "../../errors" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
|
||
[dependencies.leo-span] | ||
path = "../span" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
|
||
[dependencies.indexmap] | ||
version = "1.9" | ||
|
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Copyright (C) 2019-2023 Aleo Systems Inc. | ||
// This file is part of the Leo library. | ||
|
||
// The Leo library is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
|
||
// The Leo library is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
|
||
// You should have received a copy of the GNU General Public License | ||
// along with the Leo library. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
//! The core library structures for a Leo program. | ||
|
||
pub struct BHP |
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.8.0" | ||
version = "1.8.1" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "Compiler for Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
@@ -20,23 +20,23 @@ rust-version = "1.69" | |
|
||
[dependencies.leo-ast] | ||
path = "../ast" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
|
||
[dependencies.leo-errors] | ||
path = "../../errors" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
|
||
[dependencies.leo-passes] | ||
path = "../passes" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
|
||
[dependencies.leo-parser] | ||
path = "../parser" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
|
||
[dependencies.leo-span] | ||
path = "../span" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
|
||
[dependencies.sha2] | ||
version = "0.10" | ||
|
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.8.0" | ||
version = "1.8.1" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "Parser for the Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
@@ -20,15 +20,15 @@ rust-version = "1.69" | |
|
||
[dependencies.leo-ast] | ||
path = "../ast" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
|
||
[dependencies.leo-errors] | ||
path = "../../errors" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
|
||
[dependencies.leo-span] | ||
path = "../span" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
|
||
[dependencies.snarkvm-console] | ||
workspace = true | ||
|
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-passes" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "Compiler passes for the Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
@@ -27,19 +27,19 @@ features = [ "network" ] | |
|
||
[dependencies.leo-ast] | ||
path = "../ast" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
|
||
[dependencies.leo-errors] | ||
path = "../../errors" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
|
||
[dependencies.leo-parser] | ||
path = "../parser" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
|
||
[dependencies.leo-span] | ||
path = "../span" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
|
||
[dependencies.indexmap] | ||
version = "1.9" | ||
|
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-span" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "Span handling 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-abnf" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
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-errors" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "Errors for the Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
@@ -20,7 +20,7 @@ rust-version = "1.69" | |
|
||
[dependencies.leo-span] | ||
path = "../compiler/span" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
|
||
[dependencies.anyhow] | ||
version = "1.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-package" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
description = "Package parser for the Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
@@ -20,7 +20,7 @@ rust-version = "1.69" | |
|
||
[dependencies.leo-errors] | ||
path = "../../errors" | ||
version = "1.8.0" | ||
version = "1.8.1" | ||
|
||
[dependencies.indexmap] | ||
version = "1.9" | ||
|
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.8.0" | ||
version = "1.8.1" | ||
authors = [ "The Aleo Team <[email protected]>" ] | ||
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.8.0" | ||
version = "1.8.1" | ||
|
||
[dependencies.backtrace] | ||
version = "0.3.67" | ||
|