Skip to content
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
6 changes: 3 additions & 3 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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 changes: 7 additions & 0 deletions core/wren-core-base/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
4 changes: 2 additions & 2 deletions core/wren-core-base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"] }
Expand Down
7 changes: 7 additions & 0 deletions core/wren-core-base/manifest-macro/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion core/wren-core-base/manifest-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
6 changes: 3 additions & 3 deletions core/wren-core-py/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 core/wren-core-wasm/Cargo.lock

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

7 changes: 7 additions & 0 deletions core/wren-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
4 changes: 2 additions & 2 deletions core/wren-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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" }
Loading