Skip to content

Commit 8974090

Browse files
committed
chore: bump mq-lang/mq-markdown to 0.8.3 and version to 0.8.3
mq 0.8.3 removes RuntimeValue::Ast along with the macro/quote/unquote system; drop the now-dead match arm in MQValue's From impl.
1 parent 5c02661 commit 8974090

5 files changed

Lines changed: 13 additions & 14 deletions

File tree

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ name = "mq-python"
1010
publish = false
1111
readme = "README.md"
1212
repository = "https://github.com/harehare/mq"
13-
version = "0.8.2"
13+
version = "0.8.3"
1414

1515
[lib]
1616
crate-type = ["cdylib"]
1717
name = "mq"
1818

1919
[dependencies]
20-
mq-lang = "0.8.2"
21-
mq-markdown = "0.8.2"
20+
mq-lang = "0.8.3"
21+
mq-markdown = "0.8.3"
2222
pyo3 = {version = "0.29.0", features = ["extension-module", "abi3-py39"]}
2323

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ license = {text = "MIT"}
1313
name = "markdown-query"
1414
readme = "README.md"
1515
requires-python = ">=3.10"
16-
version = "0.8.2"
16+
version = "0.8.3"
1717

1818
[tool.maturin]
1919
module-name = "mq.mq"

src/value.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,7 @@ impl From<mq_lang::RuntimeValue> for MQValue {
132132
},
133133
mq_lang::RuntimeValue::Function(..)
134134
| mq_lang::RuntimeValue::NativeFunction(..)
135-
| mq_lang::RuntimeValue::Module(..)
136-
| mq_lang::RuntimeValue::Ast(..) => MQValue::Markdown {
135+
| mq_lang::RuntimeValue::Module(..) => MQValue::Markdown {
137136
value: "".to_string(),
138137
markdown_type: MarkdownType::Empty,
139138
},

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)