From 7601934aaf5afcd636064675e10acba9cd992593 Mon Sep 17 00:00:00 2001 From: Daniel Collin Date: Mon, 23 Oct 2023 17:57:04 +0200 Subject: [PATCH] Bump to 0.19 --- CHANGELOG.md | 4 ++++ Cargo.toml | 4 ++-- README.md | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a467ce..93ef024 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ This project follows semantic versioning. +### v0.19 (2023-10-23) + +- [Added] Depend on latest bgfx-sys with updated BGFX code. + ### v0.18 (2023-03-18) - [Added] Emscripten support. See `web_example` for an example how this works. diff --git a/Cargo.toml b/Cargo.toml index 4349c88..22b9d18 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ categories = ["rendering::graphics-api"] description = "Bindings for bgfx" repository = "https://github.com/emoon/bgfx-rs" documentation = "https://docs.rs/bgfx-rs/0.1/bgfx-rs" -version = "0.18.0" +version = "0.19.0" edition = "2018" readme = "README.md" @@ -16,7 +16,7 @@ exclude = ["resources/"] maintenance = { status = "actively-developed" } [dependencies] -bgfx-sys = "0.12" +bgfx-sys = "0.13" bitflags = "1.2" cfixed-string = "1.0" diff --git a/README.md b/README.md index a724589..54d57fb 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Usage ```toml # Cargo.toml [dependencies] -bgfx-rs = "0.18" +bgfx-rs = "0.19" ``` The library doesn't include any window handling and that has to be provided by the user. See [examples](https://github.com/emoon/bgfx-rs/tree/main/examples) an how to use [GLFW](https://crates.io/crates/glfw)