Skip to content

Commit ff7c350

Browse files
authored
Prepare release 0.12.1 (#152)
* Bump renderdoc-sys crate version to 1.1.0 * Bump renderdoc crate version to 0.12.1 Because the changes in renderdoc-sys 1.0 -> 1.1 are entirely additive and cannot impact the outward-facing API of the `renderdoc` crate at all, it should be safe to bump the patch version number here instead of the minor version. * Update CHANGELOG.md
1 parent 8d13f73 commit ff7c350

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [0.12.1] - 2024-03-01
11+
1012
### Added
1113

1214
* Add `eRENDERDOC_Option_SoftMemoryLimit` symbol to `renderdoc-sys` (PR #151).
1315

16+
### Changed
17+
18+
* Update `renderdoc-sys` dependency to 1.1.0 (PR #152).
19+
1420
## [0.12.0] - 2024-03-01
1521

1622
### Changed
@@ -238,7 +244,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
238244
* Type-safe version requests and downgrading.
239245
* Convenient conversions for `winit::VirtualKeyCode` into RenderDoc `InputButton`.
240246

241-
[Unreleased]: https://github.com/ebkalderon/renderdoc-rs/compare/v0.12.0...HEAD
247+
[Unreleased]: https://github.com/ebkalderon/renderdoc-rs/compare/v0.12.1...HEAD
248+
[0.12.1]: https://github.com/ebkalderon/renderdoc-rs/compare/v0.12.0...v0.12.1
242249
[0.12.0]: https://github.com/ebkalderon/renderdoc-rs/compare/v0.11.0...v0.12.0
243250
[0.11.0]: https://github.com/ebkalderon/renderdoc-rs/compare/v0.10.1...v0.11.0
244251
[0.10.1]: https://github.com/ebkalderon/renderdoc-rs/compare/v0.10.0...v0.10.1

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "renderdoc"
3-
version = "0.12.0"
3+
version = "0.12.1"
44
edition = "2018"
55
resolver = "2"
66
authors = ["Eyal Kalderon <ebkalderon@gmail.com>"]
@@ -30,7 +30,7 @@ bitflags = "2.0"
3030
float-cmp = "0.9"
3131
libloading = "0.8"
3232
once_cell = "1.0"
33-
renderdoc-sys = { version = "1.0.0", path = "./renderdoc-sys" }
33+
renderdoc-sys = { version = "1.1.0", path = "./renderdoc-sys" }
3434

3535
glutin = { version = "0.30", optional = true }
3636
winit = { version = "0.28", optional = true }

renderdoc-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "renderdoc-sys"
3-
version = "1.0.0"
3+
version = "1.1.0"
44
authors = ["Eyal Kalderon <ebkalderon@gmail.com>"]
55
description = "Low-level bindings to the RenderDoc API"
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)