diff --git a/Cargo.lock b/Cargo.lock index 2f67bbe3..d10c7b61 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1443,7 +1443,7 @@ checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" [[package]] name = "v8" -version = "130.0.6" +version = "130.0.7" dependencies = [ "align-data", "bindgen", diff --git a/Cargo.toml b/Cargo.toml index 0587b2aa..3bda276c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "v8" -version = "130.0.6" +version = "130.0.7" description = "Rust bindings to V8" readme = "README.md" authors = ["the Deno authors"] diff --git a/src/cppgc.rs b/src/cppgc.rs index 96f54d35..8e5eb874 100644 --- a/src/cppgc.rs +++ b/src/cppgc.rs @@ -152,6 +152,12 @@ pub fn initialize_process(platform: SharedRef) { } } +#[deprecated(note = "use correctly spelled initialize_process")] +#[inline] +pub fn initalize_process(platform: SharedRef) { + initialize_process(platform) +} + /// # Safety /// /// Must be called after destroying the last used heap. Some process-global