diff --git a/CHANGELOG.md b/CHANGELOG.md index cf08b2b..90f8486 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ # Unreleased + +# 1.0.0 (2024-09-09) + - Bump Rust Edition from 2018 to 2021. - Make `Layer`'s implementation details private; it is now a struct with `as_ptr`, `into_raw` and `is_existing` accessor methods. - Add support for tvOS, watchOS and visionOS. diff --git a/Cargo.toml b/Cargo.toml index b2982b4..ee40c5b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "raw-window-metal" # Remember to update html_root_url in lib.rs -version = "0.4.0" +version = "1.0.0" license = "MIT OR Apache-2.0" edition = "2021" description = "Interop library between Metal and raw-window-handle" diff --git a/src/lib.rs b/src/lib.rs index 882537f..e53ac34 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -132,7 +132,7 @@ #![deny(unsafe_op_in_unsafe_fn)] #![warn(clippy::undocumented_unsafe_blocks)] // Update in Cargo.toml as well. -#![doc(html_root_url = "https://docs.rs/raw-window-metal/0.4.0")] +#![doc(html_root_url = "https://docs.rs/raw-window-metal/1.0.0")] mod observer;