Skip to content

Commit 7cd928a

Browse files
authored
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
1 parent 4d8903c commit 7cd928a

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

Diff for: Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "v8"
3-
version = "130.0.6"
3+
version = "130.0.7"
44
description = "Rust bindings to V8"
55
readme = "README.md"
66
authors = ["the Deno authors"]

Diff for: src/cppgc.rs

+6
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,12 @@ pub fn initialize_process(platform: SharedRef<Platform>) {
152152
}
153153
}
154154

155+
#[deprecated(note = "use correctly spelled initialize_process")]
156+
#[inline]
157+
pub fn initalize_process(platform: SharedRef<Platform>) {
158+
initialize_process(platform)
159+
}
160+
155161
/// # Safety
156162
///
157163
/// Must be called after destroying the last used heap. Some process-global

0 commit comments

Comments
 (0)