Skip to content

Commit

Permalink
chore(version): v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
glsl-lang committed Apr 3, 2023
1 parent eb57693 commit f66545f
Show file tree
Hide file tree
Showing 11 changed files with 49 additions and 26 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
## [Unreleased]

- - -
## v0.5.0 - 2023-04-03
#### Bug Fixes
- **(lexer/v2-full)** fix injecting pp. directives after ext. declarations - (a68c630) - Alejandro González
- **(transpiler)** put pp. dirs on their own line no matter what the terminators are - (bb30674) - Alejandro González
- **(transpiler)** correct transpilation of precision qualifiers - (4b059a6) - Alejandro González
#### Build system
- pin rust-toolchain version to 1.68.1 - (d79a36f) - vtavernier
#### Continuous Integration
- add skip ci to release commits - (eb57693) - vtavernier
- enable build on next branch - (9cb8c4d) - vtavernier
- allow clippy::result_large_err - (b8facaa) - vtavernier
#### Features
- **(transpiler)** overhaul formatting and customizability - (be86326) - Alejandro González
#### Miscellaneous Chores
- **(deps)** update lalrpop to 0.19.9 - (580cdb1) - *vtavernier*
- **(deps)** replace dependency on `lazy_static` by `once_cell` - (7aa176e) - Alejandro González
- add CODEOWNERS file - (3f3fad8) - vtavernier
- fix clippy warnings - (ecf75a8) - vtavernier
#### Tests
- fix test build failure when not using the v2-full parser - (5b5092a) - Alejandro González

- - -

## v0.4.1 - 2022-09-05
#### Bug Fixes
- **(glsl-lang-types)** do not generate node type aliases via a derive macro (#9) - (b4c75a1) - Alexandre Bléron
Expand Down
6 changes: 3 additions & 3 deletions lang-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glsl-lang-cli"
version = "0.4.1"
version = "0.5.0"
authors = ["Vincent Tavernier <vince.tavernier@gmail.com>"]
edition = "2021"
license = "BSD-3-Clause"
Expand All @@ -13,8 +13,8 @@ keywords = ["glsl", "language", "parser", "ast", "cli"]
categories = ["command-line-interface", "parser-implementations", "rendering"]

[dependencies]
glsl-lang = { version = "0.4.0", features = ["lexer-v2-full"] }
lang-util = "0.4.0"
glsl-lang = { version = "0.5.0", features = ["lexer-v2-full"] }
lang-util = "0.5.0"
argh = "0.1"

serde_json = { version = "1.0", optional = true }
Expand Down
8 changes: 4 additions & 4 deletions lang-lexer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glsl-lang-lexer"
version = "0.4.1"
version = "0.5.0"
authors = ["Vincent Tavernier <vince.tavernier@gmail.com>"]
edition = "2021"
license = "BSD-3-Clause"
Expand All @@ -13,8 +13,8 @@ keywords = ["glsl", "language", "parser"]
categories = ["parser-implementations", "rendering"]

[dependencies]
glsl-lang-types = "0.4.0"
lang-util = { version = "0.4.0", features = ["lalrpop"] }
glsl-lang-types = "0.5.0"
lang-util = { version = "0.5.0", features = ["lalrpop"] }

thiserror = "1.0"

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

# v2 lexer dependencies
glsl-lang-pp = { version = "0.4.0", optional = true }
glsl-lang-pp = { version = "0.5.0", optional = true }
lalrpop-util = { version = "0.19.7", default-features = false, optional = true }

[features]
Expand Down
6 changes: 3 additions & 3 deletions lang-pp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glsl-lang-pp"
version = "0.4.1"
version = "0.5.0"
authors = ["Vincent Tavernier <vince.tavernier@gmail.com>"]
edition = "2021"
license = "BSD-3-Clause"
Expand All @@ -14,7 +14,7 @@ categories = ["parser-implementations", "rendering"]
build = "build.rs"

[dependencies]
lang-util = "0.4.0"
lang-util = "0.5.0"

string_cache = "0.8"
thiserror = "1.0"
Expand All @@ -33,7 +33,7 @@ itertools = { version = "0.10", optional = true }
once_cell = { version = "1.17.1", optional = true }

[dev-dependencies]
lang-util-dev = "0.4.0"
lang-util-dev = "0.5.0"

expect-test = "1.3"
encoding_rs = "0.8"
Expand Down
4 changes: 2 additions & 2 deletions lang-quote/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glsl-lang-quote"
version = "0.4.1"
version = "0.5.0"
authors = ["Vincent Tavernier <vince.tavernier@gmail.com>"]
edition = "2021"
license = "BSD-3-Clause"
Expand All @@ -17,7 +17,7 @@ proc-macro = true
path = "src/lib.rs"

[dependencies]
glsl-lang = { version = "0.4.0", default-features = false, features = ["lexer-v2-full"] }
glsl-lang = { version = "0.5.0", default-features = false, features = ["lexer-v2-full"] }

proc-macro2 = "1"
quote = "1"
Expand Down
4 changes: 2 additions & 2 deletions lang-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glsl-lang-types"
version = "0.4.1"
version = "0.5.0"
authors = ["Vincent Tavernier <vince.tavernier@gmail.com>"]
edition = "2021"
license = "BSD-3-Clause"
Expand All @@ -13,7 +13,7 @@ keywords = ["glsl", "language", "parser"]
categories = ["rendering"]

[dependencies]
lang-util = "0.4.0"
lang-util = "0.5.0"
thiserror = "1.0"

rserde = { version = "1.0", optional = true, features = ["derive"], package = "serde" }
Expand Down
2 changes: 1 addition & 1 deletion lang-util-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lang-util-derive"
version = "0.4.1"
version = "0.5.0"
authors = ["Vincent Tavernier <vince.tavernier@gmail.com>"]
edition = "2021"
license = "BSD-3-Clause"
Expand Down
2 changes: 1 addition & 1 deletion lang-util-dev/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lang-util-dev"
version = "0.4.1"
version = "0.5.0"
authors = ["Vincent Tavernier <vince.tavernier@gmail.com>"]
edition = "2021"
license = "BSD-3-Clause"
Expand Down
4 changes: 2 additions & 2 deletions lang-util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lang-util"
version = "0.4.1"
version = "0.5.0"
authors = ["Vincent Tavernier <vince.tavernier@gmail.com>"]
edition = "2021"
license = "BSD-3-Clause"
Expand All @@ -13,7 +13,7 @@ keywords = ["language", "parser", "ast"]
categories = ["parsing"]

[dependencies]
lang-util-derive = "0.4.0"
lang-util-derive = "0.5.0"
line-span = "0.1"
smol_str = "0.1"
text-size = "1.1"
Expand Down
14 changes: 7 additions & 7 deletions lang/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glsl-lang"
version = "0.4.1"
version = "0.5.0"
authors = ["Vincent Tavernier <vince.tavernier@gmail.com>"]
edition = "2021"
license = "BSD-3-Clause"
Expand All @@ -17,19 +17,19 @@ lalrpop-util = { version = "0.19.9", default-features = false, features = ["std"
once_cell = "1.17.1"
thiserror = "1.0"

lang-util = { version = "0.4.0", features = ["lalrpop"] }
glsl-lang-pp = { version = "0.4.0", optional = true }
glsl-lang-lexer = { version = "0.4.0", features = ["lalrpop"] }
glsl-lang-types = "0.4.0"
lang-util = { version = "0.5.0", features = ["lalrpop"] }
glsl-lang-pp = { version = "0.5.0", optional = true }
glsl-lang-lexer = { version = "0.5.0", features = ["lalrpop"] }
glsl-lang-types = "0.5.0"

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

[build-dependencies]
lalrpop = "0.19.9"

[dev-dependencies]
lang-util-dev = "0.4.0"
glsl-lang-pp = "0.4.0"
lang-util-dev = "0.5.0"
glsl-lang-pp = "0.5.0"

criterion = "0.3"
expect-test = "1.3"
Expand Down
2 changes: 1 addition & 1 deletion xtask/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xtask"
version = "0.4.1"
version = "0.5.0"
edition = "2021"

[dependencies]
Expand Down

0 comments on commit f66545f

Please sign in to comment.