From 714abfec01cdf155cc9b028a5ede293f3449c795 Mon Sep 17 00:00:00 2001 From: est31 Date: Sat, 30 Jul 2022 23:15:01 +0200 Subject: [PATCH 1/4] Update glutin to 0.29 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7ef321e845..a03da8034b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ test_headless = [] # used for testing headless display vk_interop = [] # used for texture import from Vulkan [dependencies.glutin] -version = "0.28" +version = "0.29" features = [] optional = true From bed16952ff4fdc301d20f6a454584b17ce469385 Mon Sep 17 00:00:00 2001 From: est31 Date: Sat, 30 Jul 2022 23:20:57 +0200 Subject: [PATCH 2/4] Switch edition to 2021 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a03da8034b..96f861f2db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ readme = "README.md" license = "Apache-2.0" build = "build/main.rs" exclude = ["doc"] -edition = "2018" +edition = "2021" [features] default = ["glutin"] From 2f705ee31e016073377c5b351ae8daf968da1c68 Mon Sep 17 00:00:00 2001 From: est31 Date: Sat, 30 Jul 2022 23:19:52 +0200 Subject: [PATCH 3/4] Add changelog for 0.32 --- CHANGELOG.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 62c1bd2f95..09d2ddb6e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,12 @@ # Changelog +## Version 0.32 (2022-07-30) + +- Updated glutin to version 0.29.0. See the glutin release notes [here](https://github.com/rust-windowing/glutin/blob/master/CHANGELOG.md#version-0290-2022-07-30). + ## Version 0.31 (2021-12-11) -- Updated glutin to version 0.31.0. See the glutin release notes [here](https://github.com/rust-windowing/glutin/blob/master/CHANGELOG.md#version-0280-2021-12-02). +- Updated glutin to version 0.28.0. See the glutin release notes [here](https://github.com/rust-windowing/glutin/blob/master/CHANGELOG.md#version-0280-2021-12-02). - Use mdbook for the book. ## Version 0.30.2 (2021-09-06) @@ -18,7 +22,7 @@ ## Version 0.30.0 (2021-06-23) -- Updated glutin to version 0.30.0. See the glutin release notes [here](https://github.com/rust-windowing/glutin/blob/master/CHANGELOG.md#version-0270-2021-06-01). +- Updated glutin to version 0.27.0. See the glutin release notes [here](https://github.com/rust-windowing/glutin/blob/master/CHANGELOG.md#version-0270-2021-06-01). - Replaced unmaintained `rental` with `ouroboros`. - Allow instancing on GLES3 or later. - Support for importing and using Vulkan semaphores. From 051f25a44b33a005a18d23cddc2ff7173d934bee Mon Sep 17 00:00:00 2001 From: est31 Date: Sat, 30 Jul 2022 23:21:37 +0200 Subject: [PATCH 4/4] Release 0.32.0 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 96f861f2db..151e311ed9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glium" -version = "0.31.0" +version = "0.32.0" authors = ["Pierre Krieger "] description = """ Elegant and safe OpenGL wrapper.