diff --git a/glsl-quasiquote/CHANGELOG.md b/glsl-quasiquote/CHANGELOG.md index 4694f0c..0cd2e40 100644 --- a/glsl-quasiquote/CHANGELOG.md +++ b/glsl-quasiquote/CHANGELOG.md @@ -1,3 +1,9 @@ +# 7.0 + +> Dec 23, 2023 + +- Bump to replace the yanked `glsl-6.0.3` version. + # 6.0.1 > Dec 19th, 2023 diff --git a/glsl-quasiquote/Cargo.toml b/glsl-quasiquote/Cargo.toml index ab7c276..88272c5 100644 --- a/glsl-quasiquote/Cargo.toml +++ b/glsl-quasiquote/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glsl-quasiquote" -version = "6.0.1" +version = "7.0.0" license = "BSD-3-Clause" authors = ["Dimitri Sabadie "] description = "The glsl! procedural macro, providing quasiquoting of the glsl crate." @@ -20,7 +20,7 @@ travis-ci = { repository = "phaazon/glsl", branch = "master" } proc-macro = true [dependencies] -glsl = "6" +glsl = "7" proc-macro2 = "1" proc-macro-faithful-display = "0.2" quote = "1" diff --git a/glsl-tree/CHANGELOG.md b/glsl-tree/CHANGELOG.md index 4f0e887..c21a45f 100644 --- a/glsl-tree/CHANGELOG.md +++ b/glsl-tree/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.3 + +> Dec 23, 2023 + +- Bump to replace the yanked `glsl-6.0.3` version. + ## 0.2.1 > Mar 23rd, 2023 diff --git a/glsl-tree/Cargo.toml b/glsl-tree/Cargo.toml index a2eeb11..3eebf85 100644 --- a/glsl-tree/Cargo.toml +++ b/glsl-tree/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glsl-tree" -version = "0.2.1" +version = "0.3.0" license = "BSD-3-Clause" authors = ["Dimitri Sabadie "] description = "Print a GLSL AST to stdout" @@ -14,4 +14,4 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -glsl = "6" +glsl = "7" diff --git a/glsl/CHANGELOG.md b/glsl/CHANGELOG.md index 9723dd8..7526da2 100644 --- a/glsl/CHANGELOG.md +++ b/glsl/CHANGELOG.md @@ -1,7 +1,14 @@ +# 7.0 + +> Dec 23, 2023 + +- Bump to replace the yanked `glsl-6.0.3` version. + # 6.0.3 > Dec 19, 2023 +- **Yanked, as this actually contains a breaking change**. - Fix missing `do-while` and `for` init expressions semicolons (7abee68). - Replace now-standard `#elseif` preprocessor directivy by `#elif` (2791414). - Some fixes for the GLSL transpiler: diff --git a/glsl/Cargo.toml b/glsl/Cargo.toml index a6cc982..6864755 100644 --- a/glsl/Cargo.toml +++ b/glsl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glsl" -version = "6.0.3" +version = "7.0.0" license = "BSD-3-Clause" authors = ["Dimitri Sabadie "] description = "A GLSL450/GLSL460 parser."