mirror of
https://github.com/denoland/rusty_v8.git
synced 2025-01-21 05:02:11 -05:00
fix: add back incorrectly spelled initalize_process & release 130.0.7 (#1682)
* fix: add back incorrectly spelled initalize_process * Bump version to 130.0.7
This commit is contained in:
parent
4d8903cbc3
commit
7cd928aa44
3 changed files with 8 additions and 2 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1443,7 +1443,7 @@ checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
|
|||
|
||||
[[package]]
|
||||
name = "v8"
|
||||
version = "130.0.6"
|
||||
version = "130.0.7"
|
||||
dependencies = [
|
||||
"align-data",
|
||||
"bindgen",
|
||||
|
|
|
@ -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"]
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue