Skip to content

Commit

Permalink
chore(leo): bump version for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
collinc97 committed Jun 24, 2023
1 parent 07d26ea commit 80b0976
Show file tree
Hide file tree
Showing 13 changed files with 63 additions and 44 deletions.
2 changes: 1 addition & 1 deletion .resources/release-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.8.0
v1.8.1
20 changes: 10 additions & 10 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
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"
Expand Down Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions compiler/ast/Cargo.toml
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"
Expand All @@ -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"
Expand Down
19 changes: 19 additions & 0 deletions compiler/ast/src/core/mod.rs
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
12 changes: 6 additions & 6 deletions compiler/compiler/Cargo.toml
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"
Expand All @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions compiler/parser/Cargo.toml
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"
Expand All @@ -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
Expand Down
10 changes: 5 additions & 5 deletions compiler/passes/Cargo.toml
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"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion compiler/span/Cargo.toml
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"
Expand Down
2 changes: 1 addition & 1 deletion docs/grammar/Cargo.toml
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"
Expand Down
4 changes: 2 additions & 2 deletions errors/Cargo.toml
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"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions leo/package/Cargo.toml
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"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions tests/test-framework/Cargo.toml
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"
Expand All @@ -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"
Expand Down

0 comments on commit 80b0976

Please sign in to comment.