Skip to content

update version to 0.11.2 and fix indexmap test #216

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Cargo.lock

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

13 changes: 7 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kcl-lang"
version = "0.11.1"
version = "0.11.2"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this version should update first when release, no? cc @zong-zhe

edition = "2021"
readme = "README.md"
documentation = "kcl-lang.io"
Expand All @@ -11,8 +11,9 @@ license = "Apache-2.0"

[dependencies]
anyhow = "1"
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.11.1" }
kclvm-evaluator = { git = "https://github.com/kcl-lang/kcl", version = "0.11.1" }
kclvm-loader = { git = "https://github.com/kcl-lang/kcl", version = "0.11.1" }
kclvm-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.11.1" }
kclvm-runtime = { git = "https://github.com/kcl-lang/kcl", version = "0.11.1" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.11.2" }
kclvm-evaluator = { git = "https://github.com/kcl-lang/kcl", version = "0.11.2" }
kclvm-loader = { git = "https://github.com/kcl-lang/kcl", version = "0.11.2" }
kclvm-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.11.2" }
kclvm-runtime = { git = "https://github.com/kcl-lang/kcl", version = "0.11.2" }
kclvm-primitives = { git = "https://github.com/kcl-lang/kcl", version = "0.11.2" }
3 changes: 2 additions & 1 deletion src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ use anyhow::{anyhow, Result};
use kclvm_evaluator::Evaluator;
use kclvm_loader::{load_packages, LoadPackageOptions};
use kclvm_parser::LoadProgramOptions;
use kclvm_runtime::{Context, IndexMap, PluginFunction, ValueRef};
use kclvm_primitives::IndexMap;
Copy link
Contributor Author

@liangyuanpeng liangyuanpeng Jun 14, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Breaking change in kcl-lang/kcl#1952
cc @Peefy

use kclvm_runtime::{Context, PluginFunction, ValueRef};
use std::{cell::RefCell, rc::Rc, sync::Arc};

fn my_plugin_sum(_: &Context, args: &ValueRef, _: &ValueRef) -> Result<ValueRef> {
Expand Down
Loading