Skip to content

Commit

Permalink
chore: bump cb version (#1225)
Browse files Browse the repository at this point in the history
* fix: bump rustc_data_structures version to 0.1.1

Signed-off-by: zongz <zongzhe1024@163.com>

* chore: bump rustc_span version to 0.1.1

Signed-off-by: zongz <zongzhe1024@163.com>

* chore: bump compiler_base_span version to 0.1.2

Signed-off-by: zongz <zongzhe1024@163.com>

* bump: compiler_base_error version to 0.1.5

Signed-off-by: zongz <zongzhe1024@163.com>

* fix: bump compiler_base_session version to 0.1.2

Signed-off-by: zongz <zongzhe1024@163.com>

* fix: bump compiler_base version

Signed-off-by: zongz <zongzhe1024@163.com>

---------

Signed-off-by: zongz <zongzhe1024@163.com>
  • Loading branch information
zong-zhe committed Apr 17, 2024
1 parent 3d6d6c9 commit 09dcf02
Show file tree
Hide file tree
Showing 18 changed files with 50 additions and 98 deletions.
2 changes: 1 addition & 1 deletion compiler_base/3rdparty/rustc_data_structures/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustc_data_structures"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
authors = ["zongzhe1024@163.com"]
license = "Apache-2.0 OR MIT"
Expand Down
4 changes: 2 additions & 2 deletions compiler_base/3rdparty/rustc_span/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustc_span"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
authors = ["zongzhe1024@163.com"]
license = "Apache-2.0 OR MIT"
Expand All @@ -15,7 +15,7 @@ categories = ["command-line-utilities"]
doctest = false

[dependencies]
rustc_data_structures = "0.0.1"
rustc_data_structures = "0.1.1"
scoped-tls = "1.0"
unicode-width = "0.1.4"
cfg-if = "0.1.2"
Expand Down
6 changes: 3 additions & 3 deletions compiler_base/error/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compiler_base_error"
version = "0.1.3"
version = "0.1.5"
edition = "2021"
authors = ["zongzhe1024@163.com"]
license = "Apache-2.0 OR MIT"
Expand All @@ -14,10 +14,10 @@ categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
compiler_base_span = "0.1.1"
compiler_base_span = "0.1.2"
compiler_base_macros = "0.1.1"
pretty_assertions = "1.3.0"
rustc_span = "0.1.0"
rustc_span = "0.1.1"
rustc_errors = "0.1.2"
unic-langid = {version="0.9.0", features = ["macros"]}

Expand Down
6 changes: 3 additions & 3 deletions compiler_base/session/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compiler_base_session"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
authors = ["zongzhe1024@163.com"]
license = "Apache-2.0 OR MIT"
Expand All @@ -14,6 +14,6 @@ categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
compiler_base_span = "0.1.1"
compiler_base_error = "0.1.3"
compiler_base_span = "0.1.2"
compiler_base_error = "0.1.5"
anyhow = "1.0"
4 changes: 2 additions & 2 deletions compiler_base/span/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compiler_base_span"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
authors = ["zongzhe1024@163.com"]
license = "Apache-2.0 OR MIT"
Expand All @@ -14,4 +14,4 @@ categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rustc_span = "0.1.0"
rustc_span = "0.1.1"
88 changes: 20 additions & 68 deletions kclvm/Cargo.lock

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

2 changes: 1 addition & 1 deletion kclvm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ libloading = "0.7.3"
chrono = "0.4.19"
maplit = "1.0.2"
anyhow = { version = "1.0.70", features = ["backtrace"] }
compiler_base_session = "0.1.1"
compiler_base_session = "0.1.2"

kclvm-api = {path = "./api"}
kclvm-cmd = {path = "./cmd"}
Expand Down
2 changes: 1 addition & 1 deletion kclvm/ast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"

[dependencies]
uuid = { version = "1.4.1", features = ["v4"] }
compiler_base_span = "0.1.1"
compiler_base_span = "0.1.2"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"

Expand Down
2 changes: 1 addition & 1 deletion kclvm/ast_pretty/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ kclvm-ast = {path = "../ast"}
indexmap = "1.0"
fancy-regex = "0.7.1"
pretty_assertions = "1.3.0"
compiler_base_session = "0.1.1"
compiler_base_session = "0.1.2"
compiler_base_macros = "0.1.1"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion kclvm/cmd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
[dependencies]
anyhow = "1.0"
clap = "4.3.0"
compiler_base_session = "0.1.1"
compiler_base_session = "0.1.2"

kclvm-api = {path = "../api"}
kclvm-parser = {path = "../parser"}
Expand Down
6 changes: 3 additions & 3 deletions kclvm/error/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
compiler_base_span = "0.1.1"
compiler_base_session = "0.1.1"
compiler_base_error = "0.1.3"
compiler_base_span = "0.1.2"
compiler_base_session = "0.1.2"
compiler_base_error = "0.1.5"
compiler_base_macros = "0.1.1"
kclvm-span = {path = "../span"}
kclvm-runtime = {path = "../runtime"}
Expand Down
6 changes: 3 additions & 3 deletions kclvm/parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
compiler_base_span = "0.1.1"
compiler_base_session = "0.1.1"
compiler_base_error = "0.1.3"
compiler_base_span = "0.1.2"
compiler_base_session = "0.1.2"
compiler_base_error = "0.1.5"
compiler_base_macros = "0.1.1"
tracing = "0.1"
serde = { version = "1", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion kclvm/query/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"

[dependencies]
anyhow = "1.0"
compiler_base_session = "0.1.1"
compiler_base_session = "0.1.2"
compiler_base_macros = "0.1.1"
indexmap = "1.0"

Expand Down
2 changes: 1 addition & 1 deletion kclvm/runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ anyhow = "1.0"
once_cell = "1.10"
cc = "1.0"
uuid = "1.7.0"
compiler_base_session = "0.1.1"
compiler_base_session = "0.1.2"
compiler_base_macros = "0.1.1"

kclvm-ast = {path = "../ast"}
Expand Down
6 changes: 3 additions & 3 deletions kclvm/sema/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ kclvm-runtime = { path = "../runtime" }
kclvm-error = { path = "../error" }
kclvm-span = { path = "../span" }
kclvm-utils ={ path = "../utils" }
compiler_base_span = "0.1.1"
compiler_base_session = "0.1.1"
compiler_base_span = "0.1.2"
compiler_base_session = "0.1.2"
compiler_base_macros = "0.1.1"
compiler_base_error = "0.1.3"
compiler_base_error = "0.1.5"
suggestions = "0.1.1"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion kclvm/span/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
compiler_base_span = "0.1.1"
compiler_base_span = "0.1.2"

kclvm-macros = { path = "../macros" }
scoped-tls = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions kclvm/tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ indexmap = "1.0"
fancy-regex = "0.7.1"
walkdir = "2"
anyhow = "1.0"
compiler_base_session = "0.1.1"
compiler_base_session = "0.1.2"

rustc_lexer = "0.1.0"
kclvm-ast = {path = "../ast"}
Expand All @@ -30,7 +30,7 @@ serde_yaml = "0.9.32"
once_cell = "1.15.0"
regex = "1.3"
json-spanned-value = "0.2.2"
compiler_base_span = "0.0.1"
compiler_base_span = "0.1.2"
located_yaml = "0.2.1"

[dev-dependencies]
Expand Down
Loading

0 comments on commit 09dcf02

Please sign in to comment.