From 910c8a2fecea7af5745e3f5eb50d10326803392e Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Sun, 12 Feb 2023 16:31:26 +0300 Subject: [PATCH] Glutin version 0.30.6 --- 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 339ba8f409..f73ccdb038 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# Version 0.30.6 + - Fixed handling of `*_base` extensions with EGL. # Version 0.30.5 diff --git a/README.md b/README.md index 029e48decf..344601f260 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A low-level library for OpenGL context creation. ```toml [dependencies] -glutin = "0.30.5" +glutin = "0.30.6" ``` ## [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.5). +the latest _released version_ [here](https://github.com/rust-windowing/glutin/releases/tag/v0.30.6). 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 35297eaad5..6fcd0c656a 100644 --- a/glutin/Cargo.toml +++ b/glutin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glutin" -version = "0.30.5" +version = "0.30.6" authors = ["Kirill Chibisov "] description = "Cross-platform OpenGL context provider." keywords = ["windowing", "opengl", "egl"]