chore(main): release wren-rust-core libraries (#2641)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2026-08-11 10:18:48 +08:00
committed by GitHub
parent d23460893d
commit 2dd0824179
9 changed files with 35 additions and 14 deletions
+3 -3
View File
@@ -4,7 +4,7 @@
"core/wren-core-wasm": "0.4.1",
"sdk/wren-langchain": "0.2.1",
"sdk/wren-pydantic": "0.2.1",
"core/wren-core-base/manifest-macro": "0.3.0",
"core/wren-core-base": "0.3.0",
"core/wren-core": "0.3.0"
"core/wren-core-base/manifest-macro": "0.3.1",
"core/wren-core-base": "0.3.1",
"core/wren-core": "0.3.1"
}
+7
View File
@@ -1,5 +1,12 @@
# Changelog
## [0.3.1](https://github.com/Canner/WrenAI/compare/wren-core-base-v0.3.0...wren-core-base-v0.3.1) (2026-08-10)
### Miscellaneous Chores
* **wren-core-base:** Synchronize wren-rust-core versions
## [0.3.0](https://github.com/Canner/WrenAI/compare/wren-core-base-v0.2.0...wren-core-base-v0.3.0) (2026-07-20)
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "wren-core-base"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
license = "Apache-2.0"
description = "Shared MDL manifest types for the Wren semantic engine"
@@ -16,7 +16,7 @@ default = []
[dependencies]
pyo3 = { version = "0.29.0", features = ["extension-module"], optional = true }
serde = { version = "1.0.201", features = ["derive", "rc"] }
wren-manifest-macro = { path = "manifest-macro", version = "0.3.0" }
wren-manifest-macro = { path = "manifest-macro", version = "0.3.1" }
serde_json = { version = "1.0.117" }
serde_with = { version = "3.11.0" }
sqlparser = { version = "0.58.0", features = ["visitor"] }
@@ -1,5 +1,12 @@
# Changelog
## [0.3.1](https://github.com/Canner/WrenAI/compare/wren-manifest-macro-v0.3.0...wren-manifest-macro-v0.3.1) (2026-08-10)
### Miscellaneous Chores
* **wren-manifest-macro:** Synchronize wren-rust-core versions
## [0.3.0](https://github.com/Canner/WrenAI/compare/wren-manifest-macro-v0.2.0...wren-manifest-macro-v0.3.0) (2026-07-20)
@@ -1,6 +1,6 @@
[package]
name = "wren-manifest-macro"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
license = "Apache-2.0"
description = "Proc macro for generating Python-binding manifest types for the Wren semantic engine"
+3 -3
View File
@@ -3576,7 +3576,7 @@ dependencies = [
[[package]]
name = "wren-core-base"
version = "0.3.0"
version = "0.3.1"
dependencies = [
"pyo3",
"serde",
@@ -3609,7 +3609,7 @@ dependencies = [
[[package]]
name = "wren-manifest-macro"
version = "0.3.0"
version = "0.3.1"
dependencies = [
"quote",
"syn",
@@ -3617,7 +3617,7 @@ dependencies = [
[[package]]
name = "wren-semantic-core"
version = "0.3.0"
version = "0.3.1"
dependencies = [
"async-trait",
"csv",
+3 -3
View File
@@ -4014,7 +4014,7 @@ dependencies = [
[[package]]
name = "wren-core-base"
version = "0.3.0"
version = "0.3.1"
dependencies = [
"serde",
"serde_json",
@@ -4053,7 +4053,7 @@ dependencies = [
[[package]]
name = "wren-manifest-macro"
version = "0.3.0"
version = "0.3.1"
dependencies = [
"quote",
"syn",
@@ -4061,7 +4061,7 @@ dependencies = [
[[package]]
name = "wren-semantic-core"
version = "0.3.0"
version = "0.3.1"
dependencies = [
"async-trait",
"csv",
+7
View File
@@ -1,5 +1,12 @@
# Changelog
## [0.3.1](https://github.com/Canner/WrenAI/compare/wren-semantic-core-v0.3.0...wren-semantic-core-v0.3.1) (2026-08-10)
### Bug Fixes
* **core:** keep RLAC cycle-detection state per analyzer invocation ([#2619](https://github.com/Canner/WrenAI/issues/2619)) ([d754985](https://github.com/Canner/WrenAI/commit/d754985ffe9040d7eaed9d079fbe6bae2e4d69b4))
## [0.3.0](https://github.com/Canner/WrenAI/compare/wren-semantic-core-v0.2.0...wren-semantic-core-v0.3.0) (2026-07-20)
+2 -2
View File
@@ -10,7 +10,7 @@ license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/Canner/WrenAI"
rust-version = "1.78"
version = "0.3.0"
version = "0.3.1"
[workspace.dependencies]
async-trait = "0.1.89"
@@ -34,4 +34,4 @@ serde_json = { version = "1.0.149" }
serde_with = { version = "3.18.0" }
tokio = { version = "1.46", features = ["rt", "macros"] }
wren-core = { path = "core", package = "wren-semantic-core" }
wren-core-base = { path = "../wren-core-base", version = "0.3.0" }
wren-core-base = { path = "../wren-core-base", version = "0.3.1" }