From 7d7176f08e9666c6bcb995539b573c3609e166b6 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Thu, 15 Jun 2023 10:52:57 +0400 Subject: [PATCH] Glutin version 0.30.9 --- CHANGELOG.md | 2 ++ README.md | 4 ++-- glutin/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 88771e9f26..0eda9533f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# Version 0.30.9 + - Fixed lock on SwapBuffers with some GLX drivers. - Fixed EGL's `Surface::is_single_buffered` being inversed. diff --git a/README.md b/README.md index 7cf0032260..570a281414 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A low-level library for OpenGL context creation. ```toml [dependencies] -glutin = "0.30.8" +glutin = "0.30.9" ``` ## [Documentation](https://docs.rs/glutin) @@ -22,7 +22,7 @@ Join us in any of these: ## Usage Examples **Warning:** These are examples for `master`. You can find examples for -the latest _released version_ [here](https://github.com/rust-windowing/glutin/releases/tag/v0.30.8). +the latest _released version_ [here](https://github.com/rust-windowing/glutin/releases/tag/v0.30.9). The examples use [`gl_generator`](https://crates.io/crates/gl_generator) to generate OpenGL bindings. diff --git a/glutin/Cargo.toml b/glutin/Cargo.toml index e2a781af78..defcdb3bdc 100644 --- a/glutin/Cargo.toml +++ b/glutin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glutin" -version = "0.30.8" +version = "0.30.9" authors = ["Kirill Chibisov "] description = "Cross-platform OpenGL context provider." keywords = ["windowing", "opengl", "egl"]