Skip to content

Commit

Permalink
Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jprochazk committed Mar 12, 2023
1 parent 7549bc9 commit 0967433
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 14 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hebi"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
description = "A dynamic scripting language"
repository = "https://github.com/jprochazk/hebi"
Expand All @@ -23,8 +23,8 @@ emit_snapshots = []
[dependencies]
diag = { version = "0.2.0", path = "crates/diag", package = "hebi_diag" }
span = { version = "^0.0.1", path = "crates/span", package = "hebi_span" }
derive = { version = "0.2.0", path = "crates/derive", package = "hebi_derive" }
syntax = { version = "0.2.0", path = "crates/syntax", package = "hebi_syntax", default-features = false }
derive = { version = "0.3.0", path = "crates/derive", package = "hebi_derive" }
syntax = { version = "0.3.0", path = "crates/syntax", package = "hebi_syntax", default-features = false }

beef = { version = "0.5.2" }
indexmap = { version = "1.9.2" }
Expand Down
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hebi_cli"
version = "0.2.0"
version = "0.3.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -11,7 +11,7 @@ path = "src/main.rs"


[dependencies]
hebi = { version = "0.2.0", path = ".." }
hebi = { version = "0.3.0", path = ".." }

rustyline = { version = "10.1.0" }
rustyline-derive = { version = "0.7.0" }
Expand Down
2 changes: 1 addition & 1 deletion crates/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hebi_derive"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
description = "Derive macros for Hebi"
repository = "https://github.com/jprochazk/hebi"
Expand Down
2 changes: 1 addition & 1 deletion crates/syntax/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hebi_syntax"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
description = "Syntax for Hebi"
repository = "https://github.com/jprochazk/hebi"
Expand Down
5 changes: 3 additions & 2 deletions samples/simple/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[package]
name = "simple"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
private = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -11,4 +12,4 @@ portable = ["hebi/portable"]
check_recursion_limit = ["hebi/check_recursion_limit"]

[dependencies]
hebi = { version = "0.2.0", path = "../..", default-features = false }
hebi = { version = "0.3.0", path = "../..", default-features = false }

0 comments on commit 0967433

Please sign in to comment.