From dcd311dc0682f52936eef9ecaa584986ced750bf Mon Sep 17 00:00:00 2001 From: Cobrand Date: Sat, 27 Jun 2020 10:38:17 +0000 Subject: [PATCH] Update to 0.34.2 --- Cargo.toml | 4 ++-- README.md | 4 ++-- changelog.md | 8 +++++++- sdl2-sys/Cargo.toml | 2 +- 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 49c2fe86..d508d297 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "sdl2" description = "SDL2 bindings for Rust" repository = "https://github.com/Rust-SDL2/rust-sdl2" documentation = "https://rust-sdl2.github.io/rust-sdl2/sdl2/" -version = "0.34.1" +version = "0.34.2" license = "MIT" authors = [ "Tony Aldridge ", "Cobrand "] keywords = ["SDL", "windowing", "graphics", "api", "engine"] @@ -21,7 +21,7 @@ lazy_static = "^1" [dependencies.sdl2-sys] path = "sdl2-sys" -version = "^0.34" +version = "^0.34.2" [dependencies.c_vec] version = ">= 1.0, <= 1.3" diff --git a/README.md b/README.md index de2ec5f4..e3e78b6b 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Bindings for SDL2 in Rust -### [Changelog for 0.34.1](changelog.md#v0341) +### [Changelog for 0.34.2](changelog.md#v0342) # Overview @@ -665,4 +665,4 @@ Any Pull Request is welcome, however small your contribution may be ! There are, [pdev-issue]: https://github.com/PistonDevelopers/rust-empty/issues/175 [vcpkg]: https://github.com/microsoft/vcpkg [cargo-vcpkg]: https://crates.io/crates/cargo-vcpkg -[cargo-vcpkg-usage]: #Windows,-Linux-and-macOS-with-vcpkg \ No newline at end of file +[cargo-vcpkg-usage]: #Windows,-Linux-and-macOS-with-vcpkg diff --git a/changelog.md b/changelog.md index 822f7655..5ceb6d9e 100644 --- a/changelog.md +++ b/changelog.md @@ -1,7 +1,13 @@ In this file will be listed the changes, especially the breaking ones that one should be careful of when upgrading from a version of rust-sdl2 to another. -### Unreleased +### v0.34.2 + +[PR #1012](https://github.com/Rust-SDL2/rust-sdl2/pull/1012) +Fix use after free with AudioDevice::open and AudioDevice::open\_queue + +[PR #1010](https://github.com/Rust-SDL2/rust-sdl2/pull/1010) +Fix compilation with gcc10. [PR #1009](https://github.com/Rust-SDL2/rust-sdl2/pull/1009) Add support for linking to development libraries from vcpkg, and automatically setting up a vcpkg installation using `cargo-vcpkg`. diff --git a/sdl2-sys/Cargo.toml b/sdl2-sys/Cargo.toml index f4b80266..8a2951ac 100644 --- a/sdl2-sys/Cargo.toml +++ b/sdl2-sys/Cargo.toml @@ -3,7 +3,7 @@ name = "sdl2-sys" description = "Raw SDL2 bindings for Rust, used internally rust-sdl2" repository = "https://github.com/rust-sdl2/rust-sdl2" -version = "0.34.0" +version = "0.34.2" authors = ["Tony Aldridge "] keywords = ["SDL", "windowing", "graphics", "ffi"] categories = ["rendering","external-ffi-bindings","game-engines","multimedia"]