Skip to content

Commit 52de591

Browse files
committed
bump to v0.38.0
1 parent 6b7f42a commit 52de591

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
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://docs.rs/sdl2"
6-
version = "0.37.0"
6+
version = "0.38.0"
77
license = "MIT"
88
authors = [ "Tony Aldridge <tony@angry-lawyer.com>", "Cobrand <cobrandw@gmail.com>"]
99
keywords = ["SDL", "windowing", "graphics", "api", "engine"]
@@ -23,7 +23,7 @@ lazy_static = "1.4.0"
2323

2424
[dependencies.sdl2-sys]
2525
path = "sdl2-sys"
26-
version = "^0.37.0"
26+
version = "^0.38.0"
2727

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

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Bindings for SDL2 in Rust
44

5-
### [Changelog for 0.37.0](changelog.md#v0370)
5+
### [Changelog for 0.38.0](changelog.md#v0380)
66

77
# Overview
88

@@ -351,7 +351,7 @@ add the following your `Cargo.toml`:
351351

352352
```toml
353353
[dependencies.sdl2]
354-
version = "0.37"
354+
version = "0.38"
355355
default-features = false
356356
features = ["ttf","image","gfx","mixer","static-link","use-vcpkg"]
357357

@@ -373,7 +373,7 @@ download through Crates.io:
373373

374374
```toml
375375
[dependencies]
376-
sdl2 = "0.37"
376+
sdl2 = "0.38"
377377
```
378378

379379
Alternatively, pull it from GitHub to obtain the latest version from master
@@ -394,7 +394,7 @@ adding this instead:
394394

395395
```toml
396396
[dependencies.sdl2]
397-
version = "0.37"
397+
version = "0.38"
398398
default-features = false
399399
features = ["ttf","image","gfx","mixer"]
400400
```
@@ -671,7 +671,7 @@ fn main() {
671671

672672
```toml
673673
[dependencies.sdl2]
674-
version = "0.37"
674+
version = "0.38"
675675
features = ["raw-window-handle"]
676676
```
677677

changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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-
### Next
4+
### v0.38.0
55
[PR #1493](https://github.com/Rust-SDL2/rust-sdl2/pull/1493) Add `Rect::origin` and specifies origin location in `Rect::new`.
66

77
[PR #1472](https://github.com/Rust-SDL2/rust-sdl2/pull/1472) Add `Canvas::render_geometry`, `Canvas::render_geometry_raw` and an example that uses them both. Both these bindings use `SDL_RenderGeometryRaw`.

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.37.0"
6+
version = "0.38.0"
77
authors = ["Tony Aldridge <tony@angry-lawyer.com>", "Cobrand <cobrandw@gmail.com>"]
88
keywords = ["SDL", "windowing", "graphics", "ffi"]
99
categories = ["rendering","external-ffi-bindings","game-engines","multimedia"]

0 commit comments

Comments
 (0)