diff --git a/CHANGELOG.md b/CHANGELOG.md index e8ebc9924c..04c2cfd7f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# Version 0.29.1 (2022-08-10) + - Fix build failures when building from crates.io # Version 0.29.0 (2022-07-30) diff --git a/README.md b/README.md index 25f369b4d9..834ee3751b 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.29.0" +glutin = "0.29.1" ``` ## [Documentation](https://docs.rs/glutin) @@ -20,7 +20,8 @@ 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.29.0) +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.29.1). 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 935f5de2b8..626f76a26b 100644 --- a/glutin/Cargo.toml +++ b/glutin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glutin" -version = "0.29.0" +version = "0.29.1" authors = ["The glutin contributors", "Pierre Krieger "] description = "Cross-platform OpenGL context provider." keywords = ["windowing", "opengl"]