From 6e88995d5d251fdb7a3dc9af543fd91ab14fa2a0 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Tue, 7 Feb 2023 19:31:34 +0300 Subject: [PATCH] Glutin version 0.30.4 --- 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 2e259fd1a8..4abfc8f227 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# Version 0.30.4 + - Fixed EGL display initialization with XcbDisplayHandle. - Fixed EGL/GLX `Surface::width` returning the height instead of the width. - On GLX, fixed handling of errors not directly requested by glutin. diff --git a/README.md b/README.md index f32a04618f..27cf0d680b 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A low-level library for OpenGL context creation. ```toml [dependencies] -glutin = "0.30.3" +glutin = "0.30.4" ``` ## [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.3). +the latest _released version_ [here](https://github.com/rust-windowing/glutin/releases/tag/v0.30.4). 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 a827d09f53..f2768412fd 100644 --- a/glutin/Cargo.toml +++ b/glutin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glutin" -version = "0.30.3" +version = "0.30.4" authors = ["Kirill Chibisov "] description = "Cross-platform OpenGL context provider." keywords = ["windowing", "opengl", "egl"]