Skip to content

Commit

Permalink
chore(version): v0.6.0-beta.1 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
alixinne committed Aug 19, 2024
1 parent 8a47fde commit 9cbd402
Show file tree
Hide file tree
Showing 11 changed files with 51 additions and 24 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,33 @@
## [Unreleased]

- - -
## v0.6.0-beta.1 - 2024-08-19
#### Bug Fixes
- **(deps)** update rust crate derive_more to v1 - (0315528) - renovate[bot]
- **(deps)** update all non-major dependencies - (65b144f) - renovate[bot]
- **(glsl-lang-quote)** correctly parse #(ident) at line start - (c47f7fc) - *alixinne*
- update github profile information - (2beea1f) - Alix Tavernier
#### Build system
- set resolver to 2 - (73544c2) - alixinne
#### Features
- rename lang_util(as) to lang_util(parser) - (1902047) - alixinne
#### Miscellaneous Chores
- **(cog)** allow releases on next branch - (8a47fde) - *alixinne*
- **(deps)** update softprops/action-gh-release action to v2 - (2c27d68) - renovate[bot]
- **(deps)** update peaceiris/actions-gh-pages action to v4 - (37d2da5) - renovate[bot]
- **(deps)** update rust crate glsl to v7 - (e8782ee) - renovate[bot]
- **(deps)** update actions/cache action to v4 - (76c7bd2) - renovate[bot]
- **(deps)** update actions/checkout action to v4 - (be49ea6) - renovate[bot]
- **(deps)** update actions/cache action to v3 - (b159bfb) - renovate[bot]
- **(version)** v0.5.3 [skip ci] - (ef30eef) - glsl-lang
- **(version)** v0.5.2 [skip ci] - (c0ada55) - glsl-lang
- fix script headers - (d746dcf) - alixinne
- fix clippy warnings - (b0ccc3f) - alixinne
- fix clippy warnings - (c28f583) - alixinne
- bump rust version to 1.74.0 - (23a3c9b) - alixinne

- - -

## v0.5.3 - 2024-07-23
#### Bug Fixes
- **(glsl-lang-quote)** correctly parse #(ident) at line start - (c47f7fc) - *alixinne*
Expand Down
8 changes: 4 additions & 4 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.5.3"
version = "0.6.0-beta.1"
authors = ["Alixinne <alixinne@pm.me>"]
edition = "2021"
license = "BSD-3-Clause"
Expand All @@ -13,9 +13,9 @@ keywords = ["glsl", "language", "parser", "ast", "cli"]
categories = ["command-line-interface", "parser-implementations", "rendering"]

[dependencies]
glsl-lang = { version = "=0.5.3", features = ["lexer-v2-full"] }
glsl-lang-pp = { version = "=0.5.3" }
lang-util = "=0.5.3"
glsl-lang = { version = "=0.6.0-beta.1", features = ["lexer-v2-full"] }
glsl-lang-pp = { version = "=0.6.0-beta.1" }
lang-util = "=0.6.0-beta.1"
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.5.3"
version = "0.6.0-beta.1"
authors = ["Alixinne <alixinne@pm.me>"]
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.5.3"
lang-util = { version = "=0.5.3", features = ["lalrpop"] }
glsl-lang-types = "=0.6.0-beta.1"
lang-util = { version = "=0.6.0-beta.1", 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.5.3", optional = true }
glsl-lang-pp = { version = "=0.6.0-beta.1", optional = true }
lalrpop-util = { version = "0.20.0", default-features = false, optional = true }

[features]
Expand Down
4 changes: 2 additions & 2 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.5.3"
version = "0.6.0-beta.1"
authors = ["Alixinne <alixinne@pm.me>"]
edition = "2021"
license = "BSD-3-Clause"
Expand All @@ -14,7 +14,7 @@ categories = ["parser-implementations", "rendering"]
build = "build.rs"

[dependencies]
lang-util = "=0.5.3"
lang-util = "=0.6.0-beta.1"

string_cache = "0.8"
thiserror = "1.0"
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.5.3"
version = "0.6.0-beta.1"
authors = ["Alixinne <alixinne@pm.me>"]
edition = "2021"
license = "BSD-3-Clause"
Expand All @@ -17,7 +17,7 @@ proc-macro = true
path = "src/lib.rs"

[dependencies]
glsl-lang = { version = "=0.5.3", default-features = false, features = ["lexer-v2-full"] }
glsl-lang = { version = "=0.6.0-beta.1", 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.5.3"
version = "0.6.0-beta.1"
authors = ["Alixinne <alixinne@pm.me>"]
edition = "2021"
license = "BSD-3-Clause"
Expand All @@ -13,7 +13,7 @@ keywords = ["glsl", "language", "parser"]
categories = ["rendering"]

[dependencies]
lang-util = "=0.5.3"
lang-util = "=0.6.0-beta.1"
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.5.3"
version = "0.6.0-beta.1"
authors = ["Alixinne <alixinne@pm.me>"]
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.5.3"
version = "0.6.0-beta.1"
authors = ["Alixinne <alixinne@pm.me>"]
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.5.3"
version = "0.6.0-beta.1"
authors = ["Alixinne <alixinne@pm.me>"]
edition = "2021"
license = "BSD-3-Clause"
Expand All @@ -13,7 +13,7 @@ keywords = ["language", "parser", "ast"]
categories = ["parsing"]

[dependencies]
lang-util-derive = "=0.5.3"
lang-util-derive = "=0.6.0-beta.1"
line-span = "0.1"
smol_str = "0.2"
text-size = "1.1"
Expand Down
10 changes: 5 additions & 5 deletions lang/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glsl-lang"
version = "0.5.3"
version = "0.6.0-beta.1"
authors = ["Alixinne <alixinne@pm.me>"]
edition = "2021"
license = "BSD-3-Clause"
Expand All @@ -17,10 +17,10 @@ lalrpop-util = { version = "0.20.0", default-features = false, features = ["std"
once_cell = "1.17.1"
thiserror = "1.0"

lang-util = { version = "=0.5.3", features = ["lalrpop"] }
glsl-lang-pp = { version = "=0.5.3", optional = true }
glsl-lang-lexer = { version = "=0.5.3", features = ["lalrpop"] }
glsl-lang-types = "=0.5.3"
lang-util = { version = "=0.6.0-beta.1", features = ["lalrpop"] }
glsl-lang-pp = { version = "=0.6.0-beta.1", optional = true }
glsl-lang-lexer = { version = "=0.6.0-beta.1", features = ["lalrpop"] }
glsl-lang-types = "=0.6.0-beta.1"

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

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.5.3"
version = "0.6.0-beta.1"
edition = "2021"

[dependencies]
Expand Down

0 comments on commit 9cbd402

Please sign in to comment.