From 44fcd3aa3924574ba7b258e00a1f5e69b05ea57e Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Thu, 16 Mar 2023 22:13:32 +0300 Subject: [PATCH] Glutin version 0.30.7 --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- glutin/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f73ccdb038..f517a40756 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Unreleased +# Version 0.30.7 + +- Altered specification for `objc2` crate to pull patch update. + # Version 0.30.6 - Fixed handling of `*_base` extensions with EGL. diff --git a/README.md b/README.md index 344601f260..e131699dbc 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A low-level library for OpenGL context creation. ```toml [dependencies] -glutin = "0.30.6" +glutin = "0.30.7" ``` ## [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.6). +the latest _released version_ [here](https://github.com/rust-windowing/glutin/releases/tag/v0.30.7). 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 c92b03b52e..faf5901b6c 100644 --- a/glutin/Cargo.toml +++ b/glutin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glutin" -version = "0.30.6" +version = "0.30.7" authors = ["Kirill Chibisov "] description = "Cross-platform OpenGL context provider." keywords = ["windowing", "opengl", "egl"]