Skip to content

Commit b3b7992

Browse files
authored
v0.8.7
1 parent fa2e04c commit b3b7992

File tree

43 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.

43 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.6)
11+
herb (0.8.7)
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.6, libprism v1.7.0, libherb v0.8.6 (Java JNI)"
188+
// Output: "herb java v0.8.7, libprism v1.7.0, libherb v0.8.7 (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.6"
201+
// Output: "0.8.7"
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.6"
21+
herb = "0.8.7"
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.6, libprism v1.7.0, libherb v0.8.6 (Rust FFI)"
232+
// Output: "herb rust v0.8.7, libprism v1.7.0, libherb v0.8.7 (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.6"
245+
// Output: "0.8.7"
246246
```
247247
:::
248248

docs/docs/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ The `include` patterns are **additive** - they add to the defaults rather than r
136136
### Linter Options
137137

138138
- **`enabled`**: `true` or `false` - Enable or disable the linter globally
139-
- **`failLevel`** <Badge type="info" text="v0.9.0+" />: `error`, `warning`, `info`, or `hint` - Exit with error code when diagnostics of this severity or higher are present (default: `error`). Useful for CI/CD pipelines where you want stricter enforcement. Can also be set via `--fail-level` CLI flag.
139+
- **`failLevel`** <Badge type="info" text="v0.8.7+" />: `error`, `warning`, `info`, or `hint` - Exit with error code when diagnostics of this severity or higher are present (default: `error`). Useful for CI/CD pipelines where you want stricter enforcement. Can also be set via `--fail-level` CLI flag.
140140
- **`include`**: Array of glob patterns - Additional file patterns to lint (additive to defaults)
141141
- **`exclude`**: Array of glob patterns - File patterns to exclude from linting
142142

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.6",
23-
"@herb-tools/core": "0.8.6",
24-
"@herb-tools/node": "0.8.6",
22+
"@herb-tools/browser": "0.8.7",
23+
"@herb-tools/core": "0.8.7",
24+
"@herb-tools/node": "0.8.7",
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.6",
3+
"version": "0.8.7",
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.6"
37+
"@herb-tools/core": "0.8.7"
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.6, @herb-tools/core@0.8.6, libprism@1.7.0, libherb@0.8.6 (WebAssembly)")
20+
expect(version).toBe("@herb-tools/browser@0.8.7, @herb-tools/core@0.8.7, libprism@1.7.0, libherb@0.8.7 (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.6
36+
version: 0.8.7
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.6",
3+
"version": "0.8.7",
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.6",
33+
"@herb-tools/core": "0.8.7",
3434
"picomatch": "^4.0.2",
3535
"tinyglobby": "^0.2.15",
3636
"yaml": "^2.8.2"

0 commit comments

Comments
 (0)