Skip to content

Commit 80b0976

Browse files
committed
chore(leo): bump version for new release
1 parent 07d26ea commit 80b0976

File tree

13 files changed

+63
-44
lines changed

13 files changed

+63
-44
lines changed

.resources/release-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.8.0
1+
v1.8.1

Cargo.lock

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "leo-lang"
3-
version = "1.8.0"
3+
version = "1.8.1"
44
authors = [ "The Aleo Team <[email protected]>" ]
55
description = "The Leo programming language"
66
homepage = "https://aleo.org"
@@ -50,27 +50,27 @@ noconfig = [ ]
5050

5151
[dependencies.leo-ast]
5252
path = "./compiler/ast"
53-
version = "1.8.0"
53+
version = "1.8.1"
5454

5555
[dependencies.leo-compiler]
5656
path = "./compiler/compiler"
57-
version = "1.8.0"
57+
version = "1.8.1"
5858

5959
[dependencies.leo-errors]
6060
path = "./errors"
61-
version = "1.8.0"
61+
version = "1.8.1"
6262

6363
[dependencies.leo-package]
6464
path = "./leo/package"
65-
version = "1.8.0"
65+
version = "1.8.1"
6666

6767
[dependencies.leo-parser]
6868
path = "./compiler/parser"
69-
version = "1.8.0"
69+
version = "1.8.1"
7070

7171
[dependencies.leo-span]
7272
path = "./compiler/span"
73-
version = "1.8.0"
73+
version = "1.8.1"
7474

7575
[dependencies.backtrace]
7676
version = "0.3.67"

compiler/ast/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "leo-ast"
3-
version = "1.8.0"
3+
version = "1.8.1"
44
authors = [ "The Aleo Team <[email protected]>" ]
55
description = "Abstract syntax tree (AST) for the Leo programming language"
66
homepage = "https://aleo.org"
@@ -20,11 +20,11 @@ rust-version = "1.69"
2020

2121
[dependencies.leo-errors]
2222
path = "../../errors"
23-
version = "1.8.0"
23+
version = "1.8.1"
2424

2525
[dependencies.leo-span]
2626
path = "../span"
27-
version = "1.8.0"
27+
version = "1.8.1"
2828

2929
[dependencies.indexmap]
3030
version = "1.9"

compiler/ast/src/core/mod.rs

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// Copyright (C) 2019-2023 Aleo Systems Inc.
2+
// This file is part of the Leo library.
3+
4+
// The Leo library is free software: you can redistribute it and/or modify
5+
// it under the terms of the GNU General Public License as published by
6+
// the Free Software Foundation, either version 3 of the License, or
7+
// (at your option) any later version.
8+
9+
// The Leo library is distributed in the hope that it will be useful,
10+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
// GNU General Public License for more details.
13+
14+
// You should have received a copy of the GNU General Public License
15+
// along with the Leo library. If not, see <https://www.gnu.org/licenses/>.
16+
17+
//! The core library structures for a Leo program.
18+
19+
pub struct BHP

compiler/compiler/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "leo-compiler"
3-
version = "1.8.0"
3+
version = "1.8.1"
44
authors = [ "The Aleo Team <[email protected]>" ]
55
description = "Compiler for Leo programming language"
66
homepage = "https://aleo.org"
@@ -20,23 +20,23 @@ rust-version = "1.69"
2020

2121
[dependencies.leo-ast]
2222
path = "../ast"
23-
version = "1.8.0"
23+
version = "1.8.1"
2424

2525
[dependencies.leo-errors]
2626
path = "../../errors"
27-
version = "1.8.0"
27+
version = "1.8.1"
2828

2929
[dependencies.leo-passes]
3030
path = "../passes"
31-
version = "1.8.0"
31+
version = "1.8.1"
3232

3333
[dependencies.leo-parser]
3434
path = "../parser"
35-
version = "1.8.0"
35+
version = "1.8.1"
3636

3737
[dependencies.leo-span]
3838
path = "../span"
39-
version = "1.8.0"
39+
version = "1.8.1"
4040

4141
[dependencies.sha2]
4242
version = "0.10"

compiler/parser/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "leo-parser"
3-
version = "1.8.0"
3+
version = "1.8.1"
44
authors = [ "The Aleo Team <[email protected]>" ]
55
description = "Parser for the Leo programming language"
66
homepage = "https://aleo.org"
@@ -20,15 +20,15 @@ rust-version = "1.69"
2020

2121
[dependencies.leo-ast]
2222
path = "../ast"
23-
version = "1.8.0"
23+
version = "1.8.1"
2424

2525
[dependencies.leo-errors]
2626
path = "../../errors"
27-
version = "1.8.0"
27+
version = "1.8.1"
2828

2929
[dependencies.leo-span]
3030
path = "../span"
31-
version = "1.8.0"
31+
version = "1.8.1"
3232

3333
[dependencies.snarkvm-console]
3434
workspace = true

compiler/passes/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "leo-passes"
3-
version = "1.8.0"
3+
version = "1.8.1"
44
authors = [ "The Aleo Team <[email protected]>" ]
55
description = "Compiler passes for the Leo programming language"
66
homepage = "https://aleo.org"
@@ -27,19 +27,19 @@ features = [ "network" ]
2727

2828
[dependencies.leo-ast]
2929
path = "../ast"
30-
version = "1.8.0"
30+
version = "1.8.1"
3131

3232
[dependencies.leo-errors]
3333
path = "../../errors"
34-
version = "1.8.0"
34+
version = "1.8.1"
3535

3636
[dependencies.leo-parser]
3737
path = "../parser"
38-
version = "1.8.0"
38+
version = "1.8.1"
3939

4040
[dependencies.leo-span]
4141
path = "../span"
42-
version = "1.8.0"
42+
version = "1.8.1"
4343

4444
[dependencies.indexmap]
4545
version = "1.9"

compiler/span/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "leo-span"
3-
version = "1.8.0"
3+
version = "1.8.1"
44
authors = [ "The Aleo Team <[email protected]>" ]
55
description = "Span handling for the Leo programming language"
66
homepage = "https://aleo.org"

docs/grammar/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "leo-abnf"
3-
version = "1.8.0"
3+
version = "1.8.1"
44
authors = [ "The Aleo Team <[email protected]>" ]
55
description = "ABNF to Markdown converter for the Leo programming language"
66
homepage = "https://aleo.org"

errors/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "leo-errors"
3-
version = "1.8.0"
3+
version = "1.8.1"
44
authors = [ "The Aleo Team <[email protected]>" ]
55
description = "Errors for the Leo programming language"
66
homepage = "https://aleo.org"
@@ -20,7 +20,7 @@ rust-version = "1.69"
2020

2121
[dependencies.leo-span]
2222
path = "../compiler/span"
23-
version = "1.8.0"
23+
version = "1.8.1"
2424

2525
[dependencies.anyhow]
2626
version = "1.0"

leo/package/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "leo-package"
3-
version = "1.8.0"
3+
version = "1.8.1"
44
authors = [ "The Aleo Team <[email protected]>" ]
55
description = "Package parser for the Leo programming language"
66
homepage = "https://aleo.org"
@@ -20,7 +20,7 @@ rust-version = "1.69"
2020

2121
[dependencies.leo-errors]
2222
path = "../../errors"
23-
version = "1.8.0"
23+
version = "1.8.1"
2424

2525
[dependencies.indexmap]
2626
version = "1.9"

tests/test-framework/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "leo-test-framework"
3-
version = "1.8.0"
3+
version = "1.8.1"
44
authors = [ "The Aleo Team <[email protected]>" ]
55
description = "The testing framework for the Leo programming language"
66
homepage = "https://aleo.org"
@@ -24,7 +24,7 @@ harness = false
2424

2525
[dependencies.leo-errors]
2626
path = "../../errors"
27-
version = "1.8.0"
27+
version = "1.8.1"
2828

2929
[dependencies.backtrace]
3030
version = "0.3.67"

0 commit comments

Comments
 (0)