Skip to content

Commit

Permalink
fix: add back incorrectly spelled initalize_process & release 130.0.7 (
Browse files Browse the repository at this point in the history
…#1682)

* fix: add back incorrectly spelled initalize_process

* Bump version to 130.0.7
  • Loading branch information
dsherret authored Jan 8, 2025
1 parent 4d8903c commit 7cd928a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down
6 changes: 6 additions & 0 deletions src/cppgc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,12 @@ pub fn initialize_process(platform: SharedRef<Platform>) {
}
}

#[deprecated(note = "use correctly spelled initialize_process")]
#[inline]
pub fn initalize_process(platform: SharedRef<Platform>) {
initialize_process(platform)
}

/// # Safety
///
/// Must be called after destroying the last used heap. Some process-global
Expand Down

0 comments on commit 7cd928a

Please sign in to comment.