Skip to content

Commit b36d048

Browse files
committed
Update to 0.35.2
1 parent f01b240 commit b36d048

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "sdl2"
33
description = "SDL2 bindings for Rust"
44
repository = "https://github.com/Rust-SDL2/rust-sdl2"
55
documentation = "https://rust-sdl2.github.io/rust-sdl2/sdl2/"
6-
version = "0.35.1"
6+
version = "0.35.2"
77
license = "MIT"
88
authors = [ "Tony Aldridge <[email protected]>", "Cobrand <[email protected]>"]
99
keywords = ["SDL", "windowing", "graphics", "api", "engine"]
@@ -22,7 +22,7 @@ lazy_static = "1.4.0"
2222

2323
[dependencies.sdl2-sys]
2424
path = "sdl2-sys"
25-
version = "^0.35.1"
25+
version = "^0.35.2"
2626

2727
[dependencies.c_vec]
2828
# allow both 1.* and 2.0 versions

changelog.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
In this file will be listed the changes, especially the breaking ones that one should be careful of
22
when upgrading from a version of rust-sdl2 to another.
33

4-
### Unreleased
4+
### v0.35.2
5+
6+
[PR #1173](https://github.com/Rust-SDL2/rust-sdl2/pull/1173) Fix segfault when using timer callbacks
7+
8+
[PR #1183](https://github.com/Rust-SDL2/rust-sdl2/pull/1183) WinRT support for raw-window-handle
9+
10+
[PR #1182](https://github.com/Rust-SDL2/rust-sdl2/pull/1182) Updated raw-window-handle to 0.4
11+
12+
[PR #1189](https://github.com/Rust-SDL2/rust-sdl2/pull/1189) Added `AudioQueue::queue_audio` and deprecated `AudioQueue::queue`
513

614
[PR #1164](https://github.com/Rust-SDL2/rust-sdl2/pull/1164) Added raw-window-handle support for Android
715

sdl2-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
name = "sdl2-sys"
44
description = "Raw SDL2 bindings for Rust, used internally rust-sdl2"
55
repository = "https://github.com/rust-sdl2/rust-sdl2"
6-
version = "0.35.1"
6+
version = "0.35.2"
77
authors = ["Tony Aldridge <[email protected]>"]
88
keywords = ["SDL", "windowing", "graphics", "ffi"]
99
categories = ["rendering","external-ffi-bindings","game-engines","multimedia"]

src/sdl2/audio.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@ impl<'a, Channel: AudioFormatNum> AudioQueue<Channel> {
751751
/// Adds data to the audio queue.
752752
#[doc(alias = "SDL_QueueAudio")]
753753
#[deprecated(
754-
since = "0.36.0",
754+
since = "0.35.2",
755755
note = "Users should instead use AudioQueue::queue_audio"
756756
)]
757757
pub fn queue(&self, data: &[Channel]) -> bool {

0 commit comments

Comments
 (0)