Skip to content

Commit d6b1025

Browse files
authored
1 parent c468c78 commit d6b1025

File tree

45 files changed

+120
-120
lines changed

Some content is hidden

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

45 files changed

+120
-120
lines changed

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.9.0)
44+
herb (0.9.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.9.0, libprism v1.9.0, libherb v0.9.0 (Java JNI)"
283+
// Output: "herb java v0.9.1, libprism v1.9.0, libherb v0.9.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.9.0"
296+
// Output: "0.9.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.9.0"
21+
herb = "0.9.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.9.0, libprism v1.9.0, libherb v0.9.0 (Rust FFI)"
351+
// Output: "herb rust v0.9.1, libprism v1.9.0, libherb v0.9.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.9.0"
364+
// Output: "0.9.1"
365365
```
366366
:::
367367

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.9.0",
23-
"@herb-tools/core": "0.9.0",
24-
"@herb-tools/node": "0.9.0",
22+
"@herb-tools/browser": "0.9.1",
23+
"@herb-tools/core": "0.9.1",
24+
"@herb-tools/node": "0.9.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.9.0",
3+
"version": "0.9.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.9.0"
37+
"@herb-tools/core": "0.9.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.9.0, @herb-tools/core@0.9.0, libprism@1.9.0, libherb@0.9.0 (WebAssembly)")
20+
expect(version).toBe("@herb-tools/browser@0.9.1, @herb-tools/core@0.9.1, libprism@1.9.0, libherb@0.9.1 (WebAssembly)")
2121
})
2222

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

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.9.0
36+
version: 0.9.1
3737

3838
linter:
3939
enabled: true

javascript/packages/config/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/config",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"description": "Shared configuration utilities for Herb tools",
55
"license": "MIT",
66
"homepage": "https://herb-tools.dev",
@@ -30,7 +30,7 @@
3030
}
3131
},
3232
"dependencies": {
33-
"@herb-tools/core": "0.9.0",
33+
"@herb-tools/core": "0.9.1",
3434
"picomatch": "^4.0.2",
3535
"tinyglobby": "^0.2.15",
3636
"yaml": "^2.8.2"

javascript/packages/config/src/config-template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# GitHub Repo: https://github.com/marcoroth/herb
1212
#
1313

14-
version: 0.9.0
14+
version: 0.9.1
1515

1616
# files:
1717
# # Additional patterns beyond the defaults (**.html, **.rhtml, **.html.erb, etc.)

0 commit comments

Comments
 (0)