From 9cf99a2c0239693fb65f4b8be1ca2e5c831e5460 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Sat, 30 Jul 2022 22:23:20 +0300 Subject: [PATCH] Glutin version v0.29.0 --- 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 24552ca522..44b95d57ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# Version 0.29.0 (2022-07-30) + - Fix crash when creating OpenGLES context without explicit version. - Add `buffer_age` method on `WindowedContext`. - Return an `Err` instead of panicking when surfaceless GLX context creation fails on Linux. diff --git a/README.md b/README.md index b2378a1cfd..25f369b4d9 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ A low-level library for OpenGL context creation, written in pure Rust. ```toml [dependencies] -glutin = "0.28.0" +glutin = "0.29.0" ``` ## [Documentation](https://docs.rs/glutin) @@ -20,7 +20,7 @@ Join us in any of these: ## Usage Examples -Warning: these are examples for master. For the [latest released version](https://github.com/rust-windowing/glutin/releases/tag/v0.27.0) +Warning: these are examples for master. For the [latest released version](https://github.com/rust-windowing/glutin/releases/tag/v0.29.0) 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 37d09a84a3..41b7444d01 100644 --- a/glutin/Cargo.toml +++ b/glutin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glutin" -version = "0.28.0" +version = "0.29.0" authors = ["The glutin contributors", "Pierre Krieger "] description = "Cross-platform OpenGL context provider." keywords = ["windowing", "opengl"]