Skip to content

Commit fc8ccba

Browse files
mitsuhikoclaude
andcommitted
Release 2.11.0
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 0898101 commit fc8ccba

File tree

18 files changed

+316
-33
lines changed

18 files changed

+316
-33
lines changed

.claude/settings.local.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Bash(find:*)",
5+
"Bash(git checkout:*)",
6+
"Bash(wasm-opt:*)",
7+
"Bash(npm run build:node:*)",
8+
"Bash(npm test)",
9+
"Bash(cargo:*)",
10+
"Bash(wasm2wat:*)",
11+
"Bash(grep:*)",
12+
"WebFetch(domain:github.com)",
13+
"Bash(npm run build:*)",
14+
"Bash(make:*)",
15+
"Bash(rustc:*)",
16+
"Bash(rm:*)",
17+
"Bash(mv:*)",
18+
"Bash(mkdir:*)",
19+
"Bash(timeout 10 cargo run -p minijinja-autoreload --example test_reload_loop)",
20+
"Bash(gtimeout:*)",
21+
"WebFetch(domain:docs.rs)",
22+
"Bash(ls:*)",
23+
"Bash(rg:*)",
24+
"Bash(timeout 30 cargo test test_pycompat_rendering)",
25+
"Bash(python3:*)",
26+
"Bash(./test_format)",
27+
"Bash(uvx python:*)"
28+
],
29+
"deny": []
30+
}
31+
}

Cargo.lock

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ecosystem of editor integrations.
2424
```
2525
$ cargo tree
2626
minimal v0.1.0 (examples/minimal)
27-
└── minijinja v2.10.2 (minijinja)
27+
└── minijinja v2.11.0 (minijinja)
2828
└── serde v1.0.144
2929
```
3030

examples/dsl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ publish = false
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
minijinja = { version = "2.10.2", path = "../../minijinja" }
10+
minijinja = { version = "2.11.0", path = "../../minijinja" }

examples/eval-to-state/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ publish = false
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
minijinja = { version = "2.10.2", path = "../../minijinja" }
10+
minijinja = { version = "2.11.0", path = "../../minijinja" }

examples/function-using-async/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ edition = "2021"
55
publish = false
66

77
[dependencies]
8-
minijinja = { version = "2.10.2", path = "../../minijinja" }
8+
minijinja = { version = "2.11.0", path = "../../minijinja" }
99
tokio = { version = "1.30.0", features = ["macros", "rt", "rt-multi-thread"] }

examples/object-using-async/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ edition = "2021"
55
publish = false
66

77
[dependencies]
8-
minijinja = { version = "2.10.2", path = "../../minijinja" }
8+
minijinja = { version = "2.11.0", path = "../../minijinja" }
99
tokio = { version = "1.37.0", features = ["macros", "rt", "rt-multi-thread"] }

minijinja-autoreload/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "minijinja-autoreload"
3-
version = "2.10.2"
3+
version = "2.11.0"
44
edition = "2018"
55
license = "Apache-2.0"
66
authors = ["Armin Ronacher <[email protected]>"]
@@ -19,8 +19,8 @@ default = ["watch-fs"]
1919
watch-fs = ["notify"]
2020

2121
[dependencies]
22-
minijinja = { version = "2.10.2", path = "../minijinja", default-features = false }
22+
minijinja = { version = "2.11.0", path = "../minijinja", default-features = false }
2323
notify = { version = ">=5.0.0,<9.0.0", optional = true, default-features = false, features = ["macos_fsevent"] }
2424

2525
[dev-dependencies]
26-
minijinja = { version = "2.10.2", path = "../minijinja", features = ["loader"] }
26+
minijinja = { version = "2.11.0", path = "../minijinja", features = ["loader"] }

minijinja-cabi/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "minijinja-cabi"
3-
version = "2.10.2"
3+
version = "2.11.0"
44
edition = "2021"
55

66
[lib]
77
crate-type = ["cdylib"]
88

99
[dependencies]
10-
minijinja = { version = "2.10.2", path = "../minijinja", features = ["loader", "custom_syntax"] }
10+
minijinja = { version = "2.11.0", path = "../minijinja", features = ["loader", "custom_syntax"] }

minijinja-cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "minijinja-cli"
3-
version = "2.10.2"
3+
version = "2.11.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
authors = ["Armin Ronacher <[email protected]>"]
@@ -37,7 +37,7 @@ clap = { version = "4.3.21", default-features = false, features = [
3737
"usage",
3838
"error-context",
3939
] }
40-
minijinja = { version = "=2.10.2", path = "../minijinja", features = [
40+
minijinja = { version = "=2.11.0", path = "../minijinja", features = [
4141
"loader",
4242
"json",
4343
"urlencode",
@@ -46,7 +46,7 @@ minijinja = { version = "=2.10.2", path = "../minijinja", features = [
4646
"custom_syntax",
4747
"loop_controls"
4848
] }
49-
minijinja-contrib = { version = "=2.10.2", optional = true, path = "../minijinja-contrib", features = ["pycompat", "datetime", "timezone", "rand", "unicode_wordwrap", "wordcount"] }
49+
minijinja-contrib = { version = "=2.11.0", optional = true, path = "../minijinja-contrib", features = ["pycompat", "datetime", "timezone", "rand", "unicode_wordwrap", "wordcount"] }
5050
rustyline = { version = "14.0.0", optional = true }
5151
serde = { version = "1.0.183", features = ["derive", "rc"] }
5252
serde_json = "1.0.105"

0 commit comments

Comments
 (0)