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
howardwu committed Apr 15, 2021
1 parent 7ae56f5 commit 4eac040
Show file tree
Hide file tree
Showing 15 changed files with 53 additions and 54 deletions.
2 changes: 1 addition & 1 deletion .resources/release-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.3.0
v1.4.0
26 changes: 13 additions & 13 deletions Cargo.lock

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

19 changes: 9 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "leo-lang"
version = "1.3.0"
version = "1.4.0"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "The Leo programming language"
homepage = "https://aleo.org"
Expand Down Expand Up @@ -42,31 +42,31 @@ members = [

[dependencies.leo-ast]
path = "./ast"
version = "1.3.0"
version = "1.4.0"

[dependencies.leo-compiler]
path = "./compiler"
version = "1.3.0"
version = "1.4.0"

[dependencies.leo-imports]
path = "./imports"
version = "1.3.0"
version = "1.4.0"

[dependencies.leo-input]
path = "./input"
version = "1.3.0"
version = "1.4.0"

[dependencies.leo-package]
path = "./package"
version = "1.3.0"
version = "1.4.0"

[dependencies.leo-state]
path = "./state"
version = "1.3.0"
version = "1.4.0"

[dependencies.leo-synthesizer]
path = "./synthesizer"
version = "1.3.0"
version = "1.4.0"

[dependencies.snarkvm-algorithms]
version = "0.2.2"
Expand Down Expand Up @@ -150,8 +150,7 @@ features = [ "fmt" ]
[dependencies.zip]
version = "0.5"

# add ansi support for Windows builds
[target.'cfg(windows)'.dependencies.ansi_term]
[target."cfg(windows)".dependencies.ansi_term]
version = "0.12.1"

[dev-dependencies.rusty-hook]
Expand Down
4 changes: 2 additions & 2 deletions asg-passes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "leo-asg-passes"
version = "1.3.0"
version = "1.4.0"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "The Leo programming language"
homepage = "https://aleo.org"
Expand All @@ -22,4 +22,4 @@ path = "src/lib.rs"

[dependencies.leo-asg]
path = "../asg"
version = "1.3.0"
version = "1.4.0"
6 changes: 3 additions & 3 deletions asg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "leo-asg"
version = "1.3.0"
version = "1.4.0"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "ASG of the Leo programming language"
homepage = "https://aleo.org"
Expand Down Expand Up @@ -30,11 +30,11 @@ version = "1.6"
version = "1.0"

[dependencies.leo-ast]
version = "1.3.0"
version = "1.4.0"
path = "../ast"

[dependencies.leo-parser]
version = "1.3.0"
version = "1.4.0"
path = "../parser"

[dependencies.num-bigint]
Expand Down
4 changes: 2 additions & 2 deletions ast/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "leo-ast"
version = "1.3.0"
version = "1.4.0"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "Core AST of the Leo programming language"
homepage = "https://aleo.org"
Expand All @@ -19,7 +19,7 @@ edition = "2018"

[dependencies.leo-input]
path = "../input"
version = "1.3.0"
version = "1.4.0"

[dependencies.indexmap]
version = "1.6.2"
Expand Down
18 changes: 9 additions & 9 deletions compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "leo-compiler"
version = "1.3.0"
version = "1.4.0"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "Compiler of the Leo programming language"
homepage = "https://aleo.org"
Expand All @@ -19,35 +19,35 @@ edition = "2018"

[dependencies.leo-ast]
path = "../ast"
version = "1.3.0"
version = "1.4.0"

[dependencies.leo-imports]
path = "../imports"
version = "1.3.0"
version = "1.4.0"

[dependencies.leo-input]
path = "../input"
version = "1.3.0"
version = "1.4.0"

[dependencies.leo-package]
path = "../package"
version = "1.3.0"
version = "1.4.0"

[dependencies.leo-state]
path = "../state"
version = "1.3.0"
version = "1.4.0"

[dependencies.leo-asg]
path = "../asg"
version = "1.3.0"
version = "1.4.0"

[dependencies.leo-parser]
path = "../parser"
version = "1.3.0"
version = "1.4.0"

[dependencies.leo-asg-passes]
path = "../asg-passes"
version = "1.3.0"
version = "1.4.0"

[dependencies.snarkvm-curves]
version = "0.2.2"
Expand Down
2 changes: 1 addition & 1 deletion grammar/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "leo-abnf"
version = "1.3.0"
version = "1.4.0"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "ABNF to Markdown converter for the Leo programming language"
homepage = "https://aleo.org"
Expand Down
8 changes: 4 additions & 4 deletions imports/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "leo-imports"
version = "1.3.0"
version = "1.4.0"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "Import parser for Leo program package dependencies"
homepage = "https://aleo.org"
Expand All @@ -19,15 +19,15 @@ edition = "2018"

[dependencies.leo-ast]
path = "../ast"
version = "1.3.0"
version = "1.4.0"

[dependencies.leo-asg]
path = "../asg"
version = "1.3.0"
version = "1.4.0"

[dependencies.leo-parser]
path = "../parser"
version = "1.3.0"
version = "1.4.0"

[dependencies.indexmap]
version = "1.6.2"
Expand Down
2 changes: 1 addition & 1 deletion input/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "leo-input"
version = "1.3.0"
version = "1.4.0"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "Input parser of the Leo programming language"
homepage = "https://aleo.org"
Expand Down
2 changes: 1 addition & 1 deletion linter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dependencies = { }

[package]
name = "leo-linter"
version = "1.3.0"
version = "1.4.0"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "Linter of the Leo programming language"
homepage = "https://aleo.org"
Expand Down
2 changes: 1 addition & 1 deletion package/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "leo-package"
version = "1.3.0"
version = "1.4.0"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "Package parser of the Leo programming language"
homepage = "https://aleo.org"
Expand Down
4 changes: 2 additions & 2 deletions parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "leo-parser"
version = "1.3.0"
version = "1.4.0"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "AST generated by pest from the Leo grammar rules"
homepage = "https://aleo.org"
Expand All @@ -24,7 +24,7 @@ harness = false

[dependencies.leo-ast]
path = "../ast"
version = "1.3.0"
version = "1.4.0"

[dependencies.lazy_static]
version = "1.3.0"
Expand Down
6 changes: 3 additions & 3 deletions state/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "leo-state"
version = "1.3.0"
version = "1.4.0"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "State parser of the Leo programming language"
homepage = "https://aleo.org"
Expand All @@ -19,11 +19,11 @@ edition = "2018"

[dependencies.leo-input]
path = "../input"
version = "1.3.0"
version = "1.4.0"

[dependencies.leo-ast]
path = "../ast"
version = "1.3.0"
version = "1.4.0"

[dependencies.snarkvm-algorithms]
version = "0.2.2"
Expand Down
2 changes: 1 addition & 1 deletion synthesizer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "leo-synthesizer"
version = "1.3.0"
version = "1.4.0"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "Circuit synthesizer of the Leo programming language"
homepage = "https://aleo.org"
Expand Down

0 comments on commit 4eac040

Please sign in to comment.