Skip to content

Commit c1a0f5d

Browse files
fix: special category pest (#16)
1 parent 91c3673 commit c1a0f5d

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hyprlang"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
edition = "2024"
55
authors = ["Alex Spinu"]
66
description = "A scripting language interpreter and parser for Hyprlang and Hyprland configuration files."

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Add this to your `Cargo.toml`:
5151

5252
```toml
5353
[dependencies]
54-
hyprlang = "0.4.0"
54+
hyprlang = "0.4.1"
5555
```
5656

5757
### Optional Features
@@ -62,7 +62,7 @@ Enable the `hyprland` feature to get a high-level `Hyprland` struct with pre-con
6262

6363
```toml
6464
[dependencies]
65-
hyprlang = { version = "0.4.0", features = ["hyprland"] }
65+
hyprlang = { version = "0.4.1", features = ["hyprland"] }
6666
```
6767

6868
This feature provides:
@@ -76,7 +76,7 @@ Enable the `mutation` feature to modify configuration values and serialize confi
7676

7777
```toml
7878
[dependencies]
79-
hyprlang = { version = "0.4.0", features = ["mutation"] }
79+
hyprlang = { version = "0.4.1", features = ["mutation"] }
8080
```
8181

8282
This feature provides:

src/hyprlang.pest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ statement = _{
1111
comment |
1212
directive |
1313
variable_def |
14-
category_block |
1514
special_category_block |
15+
category_block |
1616
assignment
1717
}
1818

0 commit comments

Comments
 (0)