Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleMayes committed Jul 20, 2024
1 parent 09026ff commit 076c7da
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## [0.24.0] - UNRELEASED
## [0.24.0] - 2024-07-20

### Changed
- Removed `LoaderError` implementation for `String` and added `StringLoaderError` struct
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.23.0", features = ["libloading", "provisional", "window"] }
vulkanalia = { path = "../vulkanalia", version = "=0.24.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.23.0";
const VERSION: &str = "0.24.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.23.0", features = ["libloading", "provisional", "window"] }
vulkanalia = { version = "=0.24.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.23.0"
version = "0.24.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.23.0"
version = "0.24.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.5", optional = true }
raw-window-handle = { version = "0.6", optional = true }
vulkanalia-sys = { version = "0.23", path = "../vulkanalia-sys", default-features = false }
vulkanalia-sys = { version = "0.24", path = "../vulkanalia-sys", default-features = false }

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

Expand Down

0 comments on commit 076c7da

Please sign in to comment.