Skip to content

Commit c0ada55

Browse files
author
glsl-lang
committed
chore(version): v0.5.2 [skip ci]
1 parent ca89a01 commit c0ada55

File tree

11 files changed

+51
-27
lines changed

11 files changed

+51
-27
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,30 @@
11
## [Unreleased]
22

33
- - -
4+
## v0.5.2 - 2023-11-13
5+
#### Bug Fixes
6+
- **(cli)** actually setup fs preprocessor - (ca89a01) - *vtavernier*
7+
- **(lang-lexer/inject)** prevent some #include'd pp. dirs. from being injected at wrong positions - (cbd63d0) - Alejandro González
8+
- **(lang-lexer/inject)** better support injection of pp. dirs. from multiple files - (556fd4b) - Alejandro González
9+
#### Continuous Integration
10+
- **(bumpver)** use --exact - (7b81cdb) - *vtavernier*
11+
#### Miscellaneous Chores
12+
- **(deps)** update rust crate lalrpop-util to 0.20.0 - (43c7226) - renovate[bot]
13+
- **(deps)** update rust crate lalrpop to 0.20.0 - (b1801d9) - renovate[bot]
14+
- **(deps)** update cocogitto/cocogitto-action action to v3.5 - (6728065) - renovate[bot]
15+
- **(deps)** drop dependency on `lexical` - (5dc7eb2) - Alejandro González
16+
- **(deps)** add renovate.json - (d73718f) - renovate[bot]
17+
- **(version)** v0.5.1 [skip ci] - (3198b9d) - glsl-lang
18+
- fix dependency updates - (e525715) - vtavernier
19+
- fix in-workspace package versions - (254a042) - vtavernier
20+
- silence a new Clippy lint, run `cargo fmt` - (8a34d08) - Alejandro González
21+
- fix new Clippy unnecessary allocs lint in `lang-quote` - (50f509d) - Alejandro González
22+
- bump Rust toolchain to 1.70.0 - (db51697) - Alejandro González
23+
#### Tests
24+
- **(multifile-pp)** add tests for #24 - (fba1694) - *vtavernier*
25+
26+
- - -
27+
428
## v0.5.1 - 2023-04-27
529
#### Bug Fixes
630
- **(transpiler)** add missing brackets for array expressions - (51a7729) - Alejandro González

lang-cli/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "glsl-lang-cli"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
authors = ["Vincent Tavernier <vince.tavernier@gmail.com>"]
55
edition = "2021"
66
license = "BSD-3-Clause"
@@ -13,9 +13,9 @@ keywords = ["glsl", "language", "parser", "ast", "cli"]
1313
categories = ["command-line-interface", "parser-implementations", "rendering"]
1414

1515
[dependencies]
16-
glsl-lang = { version = "=0.5.1", features = ["lexer-v2-full"] }
17-
glsl-lang-pp = { version = "=0.5.1" }
18-
lang-util = "=0.5.1"
16+
glsl-lang = { version = "=0.5.2", features = ["lexer-v2-full"] }
17+
glsl-lang-pp = { version = "=0.5.2" }
18+
lang-util = "=0.5.2"
1919
argh = "0.1"
2020

2121
serde_json = { version = "1.0", optional = true }

lang-lexer/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "glsl-lang-lexer"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
authors = ["Vincent Tavernier <vince.tavernier@gmail.com>"]
55
edition = "2021"
66
license = "BSD-3-Clause"
@@ -13,8 +13,8 @@ keywords = ["glsl", "language", "parser"]
1313
categories = ["parser-implementations", "rendering"]
1414

1515
[dependencies]
16-
glsl-lang-types = "=0.5.1"
17-
lang-util = { version = "=0.5.1", features = ["lalrpop"] }
16+
glsl-lang-types = "=0.5.2"
17+
lang-util = { version = "=0.5.2", features = ["lalrpop"] }
1818

1919
thiserror = "1.0"
2020

@@ -24,7 +24,7 @@ rserde = { version = "1.0", optional = true, features = ["derive"], package = "s
2424
logos = { version = "0.12", optional = true }
2525

2626
# v2 lexer dependencies
27-
glsl-lang-pp = { version = "=0.5.1", optional = true }
27+
glsl-lang-pp = { version = "=0.5.2", optional = true }
2828
lalrpop-util = { version = "0.20.0", default-features = false, optional = true }
2929

3030
[features]

lang-pp/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "glsl-lang-pp"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
authors = ["Vincent Tavernier <vince.tavernier@gmail.com>"]
55
edition = "2021"
66
license = "BSD-3-Clause"
@@ -14,7 +14,7 @@ categories = ["parser-implementations", "rendering"]
1414
build = "build.rs"
1515

1616
[dependencies]
17-
lang-util = "=0.5.1"
17+
lang-util = "=0.5.2"
1818

1919
string_cache = "0.8"
2020
thiserror = "1.0"
@@ -32,7 +32,7 @@ itertools = { version = "0.10", optional = true }
3232
once_cell = { version = "1.17.1", optional = true }
3333

3434
[dev-dependencies]
35-
lang-util-dev = "=0.5.1"
35+
lang-util-dev = "=0.5.2"
3636

3737
expect-test = "1.3"
3838
encoding_rs = "0.8"

lang-quote/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "glsl-lang-quote"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
authors = ["Vincent Tavernier <vince.tavernier@gmail.com>"]
55
edition = "2021"
66
license = "BSD-3-Clause"
@@ -17,7 +17,7 @@ proc-macro = true
1717
path = "src/lib.rs"
1818

1919
[dependencies]
20-
glsl-lang = { version = "=0.5.1", default-features = false, features = ["lexer-v2-full"] }
20+
glsl-lang = { version = "=0.5.2", default-features = false, features = ["lexer-v2-full"] }
2121

2222
proc-macro2 = "1"
2323
quote = "1"

lang-types/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "glsl-lang-types"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
authors = ["Vincent Tavernier <vince.tavernier@gmail.com>"]
55
edition = "2021"
66
license = "BSD-3-Clause"
@@ -13,7 +13,7 @@ keywords = ["glsl", "language", "parser"]
1313
categories = ["rendering"]
1414

1515
[dependencies]
16-
lang-util = "=0.5.1"
16+
lang-util = "=0.5.2"
1717
thiserror = "1.0"
1818

1919
rserde = { version = "1.0", optional = true, features = ["derive"], package = "serde" }

lang-util-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lang-util-derive"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
authors = ["Vincent Tavernier <vince.tavernier@gmail.com>"]
55
edition = "2021"
66
license = "BSD-3-Clause"

lang-util-dev/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lang-util-dev"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
authors = ["Vincent Tavernier <vince.tavernier@gmail.com>"]
55
edition = "2021"
66
license = "BSD-3-Clause"

lang-util/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lang-util"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
authors = ["Vincent Tavernier <vince.tavernier@gmail.com>"]
55
edition = "2021"
66
license = "BSD-3-Clause"
@@ -13,7 +13,7 @@ keywords = ["language", "parser", "ast"]
1313
categories = ["parsing"]
1414

1515
[dependencies]
16-
lang-util-derive = "=0.5.1"
16+
lang-util-derive = "=0.5.2"
1717
line-span = "0.1"
1818
smol_str = "0.1"
1919
text-size = "1.1"

lang/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "glsl-lang"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
authors = ["Vincent Tavernier <vince.tavernier@gmail.com>"]
55
edition = "2021"
66
license = "BSD-3-Clause"
@@ -17,19 +17,19 @@ lalrpop-util = { version = "0.20.0", default-features = false, features = ["std"
1717
once_cell = "1.17.1"
1818
thiserror = "1.0"
1919

20-
lang-util = { version = "=0.5.1", features = ["lalrpop"] }
21-
glsl-lang-pp = { version = "=0.5.1", optional = true }
22-
glsl-lang-lexer = { version = "=0.5.1", features = ["lalrpop"] }
23-
glsl-lang-types = "=0.5.1"
20+
lang-util = { version = "=0.5.2", features = ["lalrpop"] }
21+
glsl-lang-pp = { version = "=0.5.2", optional = true }
22+
glsl-lang-lexer = { version = "=0.5.2", features = ["lalrpop"] }
23+
glsl-lang-types = "=0.5.2"
2424

2525
rserde = { version = "1.0", optional = true, features = ["derive"], package = "serde" }
2626

2727
[build-dependencies]
2828
lalrpop = "0.20.0"
2929

3030
[dev-dependencies]
31-
lang-util-dev = "=0.5.1"
32-
glsl-lang-pp = "=0.5.1"
31+
lang-util-dev = "=0.5.2"
32+
glsl-lang-pp = "=0.5.2"
3333

3434
criterion = "0.3"
3535
expect-test = "1.3"

xtask/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "xtask"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
edition = "2021"
55

66
[dependencies]

0 commit comments

Comments
 (0)