Skip to content

Commit f681767

Browse files
authored
1 parent 0c7e902 commit f681767

48 files changed

Lines changed: 137 additions & 137 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ GIT
4141
PATH
4242
remote: .
4343
specs:
44-
herb (0.10.0)
44+
herb (0.10.1)
4545

4646
GEM
4747
remote: https://rubygems.org/

docs/docs/bindings/java/reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ Returns the full version information including Herb, Prism, and JNI details:
280280
import org.herb.Herb;
281281

282282
System.out.println(Herb.version());
283-
// Output: "herb java v0.10.0, libprism v1.9.0, libherb v0.10.0 (Java JNI)"
283+
// Output: "herb java v0.10.1, libprism v1.9.0, libherb v0.10.1 (Java JNI)"
284284
```
285285
:::
286286

@@ -293,7 +293,7 @@ Returns just the Herb library version:
293293
import org.herb.Herb;
294294

295295
System.out.println(Herb.herbVersion());
296-
// Output: "0.10.0"
296+
// Output: "0.10.1"
297297
```
298298
:::
299299

docs/docs/bindings/rust/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Add the dependency to your `Cargo.toml`:
1818
:::code-group
1919
```toml [Cargo.toml]
2020
[dependencies]
21-
herb = "0.10.0"
21+
herb = "0.10.1"
2222
```
2323
:::
2424

docs/docs/bindings/rust/reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ Returns the full version information including Herb, Prism, and FFI details:
348348
use herb::version;
349349

350350
println!("{}", version());
351-
// Output: "herb rust v0.10.0, libprism v1.9.0, libherb v0.10.0 (Rust FFI)"
351+
// Output: "herb rust v0.10.1, libprism v1.9.0, libherb v0.10.1 (Rust FFI)"
352352
```
353353
:::
354354

@@ -361,7 +361,7 @@ Returns just the Herb library version:
361361
use herb::herb_version;
362362

363363
println!("{}", herb_version());
364-
// Output: "0.10.0"
364+
// Output: "0.10.1"
365365
```
366366
:::
367367

docs/docs/projects/dev-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The dev server consists of two parts:
3434
3535
⚠️ Experimental: The dev server is experimental and may not work correctly in all cases.
3636
37-
Herb: 0.10.0
37+
Herb: 0.10.1
3838
Project: /path/to/project
3939
Config: .herb.yml
4040
Files: 453 templates indexed

docs/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
"fetch:contributors": "mkdir -p .vitepress/data/ && gh api -X get https://api.github.com/repos/marcoroth/herb/contributors > .vitepress/data/contributors.json"
2020
},
2121
"dependencies": {
22-
"@herb-tools/browser": "0.10.0",
23-
"@herb-tools/core": "0.10.0",
24-
"@herb-tools/node": "0.10.0",
22+
"@herb-tools/browser": "0.10.1",
23+
"@herb-tools/core": "0.10.1",
24+
"@herb-tools/node": "0.10.1",
2525
"medium-zoom": "^1.1.0"
2626
},
2727
"devDependencies": {

javascript/packages/browser/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@herb-tools/browser",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"description": "WebAssembly-based HTML-aware ERB parser for browsers.",
55
"type": "module",
66
"license": "MIT",
@@ -34,7 +34,7 @@
3434
}
3535
},
3636
"dependencies": {
37-
"@herb-tools/core": "0.10.0"
37+
"@herb-tools/core": "0.10.1"
3838
},
3939
"files": [
4040
"package.json",

javascript/packages/browser/test/browser.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ describe("@herb-tools/browser", () => {
1717
test("version() returns a string", async () => {
1818
const version = Herb.version
1919
expect(typeof version).toBe("string")
20-
expect(version).toBe("@herb-tools/browser@0.10.0, @herb-tools/core@0.10.0, libprism@1.9.0, libherb@0.10.0 (WebAssembly)")
20+
expect(version).toBe("@herb-tools/browser@0.10.1, @herb-tools/core@0.10.1, libprism@1.9.0, libherb@0.10.1 (WebAssembly)")
2121
})
2222

2323
test("parse() can process a simple template", async () => {

javascript/packages/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@herb-tools/client",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"description": "HMR client for Herb templates - connects to herb dev server and applies live DOM patches",
55
"type": "module",
66
"license": "MIT",

javascript/packages/config/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ bun add @herb-tools/config
3333
The configuration is stored in a `.herb.yml` file in the project root:
3434

3535
```yaml [.herb.yml]
36-
version: 0.10.0
36+
version: 0.10.1
3737

3838
linter:
3939
enabled: true

0 commit comments

Comments
 (0)