Update to 0.34.2

This commit is contained in:
Cobrand
2020-06-27 10:38:17 +00:00
parent 99afa37e67
commit dcd311dc06
4 changed files with 12 additions and 6 deletions
+2 -2
View File
@@ -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 <tony@angry-lawyer.com>", "Cobrand <cobrandw@gmail.com>"]
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"
+2 -2
View File
@@ -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
[cargo-vcpkg-usage]: #Windows,-Linux-and-macOS-with-vcpkg
+7 -1
View File
@@ -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`.
+1 -1
View File
@@ -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 <tony@angry-lawyer.com>"]
keywords = ["SDL", "windowing", "graphics", "ffi"]
categories = ["rendering","external-ffi-bindings","game-engines","multimedia"]