From 166b22552817b6010c958734e887f44b502c93e3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Sep 2023 11:39:45 +0000 Subject: [PATCH] chore(main): release 0.13.1 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 4 ++-- rich-sdl2-rust-sys/Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 22628d60..27abb388 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.13.1](https://github.com/MikuroXina/rich-sdl2-rust/compare/v0.13.0...v0.13.1) (2023-09-21) + + +### Bug Fixes + +* Fix derive and calling bits for bitflags ([#57](https://github.com/MikuroXina/rich-sdl2-rust/issues/57)) ([a8af56c](https://github.com/MikuroXina/rich-sdl2-rust/commit/a8af56c55b25a09d56c4f880822bc3da9c2f270f)) +* Fix to be able to build with vendor feature ([#65](https://github.com/MikuroXina/rich-sdl2-rust/issues/65)) ([4e9ed41](https://github.com/MikuroXina/rich-sdl2-rust/commit/4e9ed41e19a477492a501a19fbb8bc4ae41291f4)) + ## [0.13.0](https://github.com/MikuroXina/rich-sdl2-rust/compare/v0.12.1...v0.13.0) (2023-01-29) diff --git a/Cargo.toml b/Cargo.toml index 46e66a17..304508fb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rich-sdl2-rust" -version = "0.13.0" +version = "0.13.1" authors = ["MikuroXina "] edition = "2021" description = "The sdl2 wrapper for Rust." @@ -30,7 +30,7 @@ ash = { version = "0.37.3", optional = true } bitflags = "2.4.0" static_assertions = "1.1.0" typed-builder = "0.16.1" -rich-sdl2-rust-sys = { path = "./rich-sdl2-rust-sys", version = "0.13.0" } +rich-sdl2-rust-sys = { path = "./rich-sdl2-rust-sys", version = "0.13.1" } once_cell = { version = "1.18.0", optional = true } raw-window-handle = "0.3.4" diff --git a/rich-sdl2-rust-sys/Cargo.toml b/rich-sdl2-rust-sys/Cargo.toml index b41454a3..36b4fae8 100644 --- a/rich-sdl2-rust-sys/Cargo.toml +++ b/rich-sdl2-rust-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rich-sdl2-rust-sys" -version = "0.13.0" +version = "0.13.1" edition = "2021" description = "The sdl2 binding for Rust." repository = "https://github.com/MikuroXina/rich-sdl2-rust"