From f0d907c1a0948083102d2ca23e638247fcf5b379 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Wed, 7 Dec 2022 10:10:17 +0300 Subject: [PATCH] Glutin version 0.30.3 --- 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 2ab163013c..4e5f81726b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# Version 0.30.3 + - Fixed wrong amount of rects commited in `Surface::swap_buffers_with_damage` with EGL. - Added missing `Eq`, `PartialEq`, and `Hash` impls for `surface::Rect`. diff --git a/README.md b/README.md index 708cb36d84..bbbe948136 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A low-level library for OpenGL context creation. ```toml [dependencies] -glutin = "0.30.2" +glutin = "0.30.3" ``` ## [Documentation](https://docs.rs/glutin) @@ -22,7 +22,7 @@ Join us in any of these: ## Usage Examples **Warning:** these are examples for master. For the latest released version you can -find them [here](https://github.com/rust-windowing/glutin/releases/tag/v0.30.2). +find them [here](https://github.com/rust-windowing/glutin/releases/tag/v0.30.3). 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 9379505f46..cc431809f6 100644 --- a/glutin/Cargo.toml +++ b/glutin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glutin" -version = "0.30.2" +version = "0.30.3" authors = ["Kirill Chibisov "] description = "Cross-platform OpenGL context provider." keywords = ["windowing", "opengl", "egl"]