Skip to content

Commit c48e517

Browse files
authored
v0.8.9
1 parent 3dbf796 commit c48e517

File tree

42 files changed

+107
-107
lines changed

Some content is hidden

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

42 files changed

+107
-107
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ GIT
88
PATH
99
remote: .
1010
specs:
11-
herb (0.8.8)
11+
herb (0.8.9)
1212

1313
GEM
1414
remote: https://rubygems.org/

docs/docs/bindings/java/reference.md

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

187187
System.out.println(Herb.version());
188-
// Output: "herb java v0.8.8, libprism v1.8.0, libherb v0.8.8 (Java JNI)"
188+
// Output: "herb java v0.8.9, libprism v1.8.0, libherb v0.8.9 (Java JNI)"
189189
```
190190
:::
191191

@@ -198,7 +198,7 @@ Returns just the Herb library version:
198198
import org.herb.Herb;
199199

200200
System.out.println(Herb.herbVersion());
201-
// Output: "0.8.8"
201+
// Output: "0.8.9"
202202
```
203203
:::
204204

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.8.8"
21+
herb = "0.8.9"
2222
```
2323
:::
2424

docs/docs/bindings/rust/reference.md

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

231231
println!("{}", version());
232-
// Output: "herb rust v0.8.8, libprism v1.8.0, libherb v0.8.8 (Rust FFI)"
232+
// Output: "herb rust v0.8.9, libprism v1.8.0, libherb v0.8.9 (Rust FFI)"
233233
```
234234
:::
235235

@@ -242,7 +242,7 @@ Returns just the Herb library version:
242242
use herb::herb_version;
243243

244244
println!("{}", herb_version());
245-
// Output: "0.8.8"
245+
// Output: "0.8.9"
246246
```
247247
:::
248248

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.8.8",
23-
"@herb-tools/core": "0.8.8",
24-
"@herb-tools/node": "0.8.8",
22+
"@herb-tools/browser": "0.8.9",
23+
"@herb-tools/core": "0.8.9",
24+
"@herb-tools/node": "0.8.9",
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.8.8",
3+
"version": "0.8.9",
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.8.8"
37+
"@herb-tools/core": "0.8.9"
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.8.8, @herb-tools/core@0.8.8, libprism@1.8.0, libherb@0.8.8 (WebAssembly)")
20+
expect(version).toBe("@herb-tools/browser@0.8.9, @herb-tools/core@0.8.9, libprism@1.8.0, libherb@0.8.9 (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.8.8
36+
version: 0.8.9
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.8.8",
3+
"version": "0.8.9",
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.8.8",
33+
"@herb-tools/core": "0.8.9",
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.8.8
14+
version: 0.8.9
1515

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

0 commit comments

Comments
 (0)