Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleMayes committed Mar 29, 2024
1 parent a50fc3a commit 7f1d315
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## [0.23.0] - UNRELEASED
## [0.23.0] - 2024-03-29

### Changed
- Bumped MSRV to 1.65
Expand Down
2 changes: 1 addition & 1 deletion examples/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ impl App {
// Get the swapchain image for the current frame.
let result = self.device.acquire_next_image_khr(
self.data.swapchain,
u64::MAX,
10_000,
self.data.image_available_semaphores[self.frame],
vk::Fence::null(),
);
Expand Down
2 changes: 1 addition & 1 deletion tutorial/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ png = "0.17"
pretty_env_logger = "0.5"
thiserror = "1"
tobj = { version = "3", features = ["log"] }
vulkanalia = { path = "../vulkanalia", version = "=0.22.0", features = ["libloading", "provisional", "window"] }
vulkanalia = { path = "../vulkanalia", version = "=0.23.0", features = ["libloading", "provisional", "window"] }
winit = "0.29"

[[bin]]
Expand Down
2 changes: 1 addition & 1 deletion tutorial/book/preprocessor/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use pulldown_cmark_to_cmark::cmark;
/// The Vulkan API Registry index.
const INDEX: &str = include_str!("../../../index.txt");
/// The version of `vulkanalia` used by the tutorial.
const VERSION: &str = "0.22.0";
const VERSION: &str = "0.23.0";

/// The number of documentation link replacements made.
static REPLACEMENTS: AtomicUsize = AtomicUsize::new(0);
Expand Down
2 changes: 1 addition & 1 deletion tutorial/book/src/development_environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ png = "0.17"
pretty_env_logger = "0.5"
thiserror = "1"
tobj = { version = "3", features = ["log"] }
vulkanalia = { version = "=0.22.0", features = ["libloading", "provisional", "window"] }
vulkanalia = { version = "=0.23.0", features = ["libloading", "provisional", "window"] }
winit = "0.29"
```

Expand Down
2 changes: 1 addition & 1 deletion vulkanalia-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2018"
name = "vulkanalia-sys"
authors = ["Kyle Mayes <[email protected]>"]

version = "0.22.0"
version = "0.23.0"

readme = "../README.md"
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions vulkanalia/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2018"
name = "vulkanalia"
authors = ["Kyle Mayes <[email protected]>"]

version = "0.22.0"
version = "0.23.0"

readme = "../README.md"
license = "Apache-2.0"
Expand All @@ -32,7 +32,7 @@ window = ["raw-window-handle", "cocoa", "metal", "objc"]

libloading = { version = "0.8", optional = true }
raw-window-handle = { version = "0.6", optional = true }
vulkanalia-sys = { version = "0.22", path = "../vulkanalia-sys", default-features = false }
vulkanalia-sys = { version = "0.23", path = "../vulkanalia-sys", default-features = false }

[target.'cfg(target_os = "macos")'.dependencies]

Expand Down

0 comments on commit 7f1d315

Please sign in to comment.