Skip to content

Commit

Permalink
Prepare release 0.12.1 (#152)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
ebkalderon authored Mar 2, 2024
1 parent 8d13f73 commit ff7c350
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.12.1] - 2024-03-01

### Added

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

### Changed

* Update `renderdoc-sys` dependency to 1.1.0 (PR #152).

## [0.12.0] - 2024-03-01

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

[Unreleased]: https://github.com/ebkalderon/renderdoc-rs/compare/v0.12.0...HEAD
[Unreleased]: https://github.com/ebkalderon/renderdoc-rs/compare/v0.12.1...HEAD
[0.12.1]: https://github.com/ebkalderon/renderdoc-rs/compare/v0.12.0...v0.12.1
[0.12.0]: https://github.com/ebkalderon/renderdoc-rs/compare/v0.11.0...v0.12.0
[0.11.0]: https://github.com/ebkalderon/renderdoc-rs/compare/v0.10.1...v0.11.0
[0.10.1]: https://github.com/ebkalderon/renderdoc-rs/compare/v0.10.0...v0.10.1
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "renderdoc"
version = "0.12.0"
version = "0.12.1"
edition = "2018"
resolver = "2"
authors = ["Eyal Kalderon <ebkalderon@gmail.com>"]
Expand Down Expand Up @@ -30,7 +30,7 @@ bitflags = "2.0"
float-cmp = "0.9"
libloading = "0.8"
once_cell = "1.0"
renderdoc-sys = { version = "1.0.0", path = "./renderdoc-sys" }
renderdoc-sys = { version = "1.1.0", path = "./renderdoc-sys" }

glutin = { version = "0.30", optional = true }
winit = { version = "0.28", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion renderdoc-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "renderdoc-sys"
version = "1.0.0"
version = "1.1.0"
authors = ["Eyal Kalderon <ebkalderon@gmail.com>"]
description = "Low-level bindings to the RenderDoc API"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit ff7c350

Please sign in to comment.