From fbb4a5def00ceab9cff11348e24b4c5171c99a45 Mon Sep 17 00:00:00 2001 From: "andries@fam-hiemstra.nl" Date: Sun, 22 Sep 2024 10:33:39 +0200 Subject: [PATCH] update to quickjs-ng 0.6.0 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 6 +++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d2316e0bc6a..c9cf9487479 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# 0.14.2 + +* update quickjs-ng to 0.6.0 + +# 0.14.1 + +* update quickjs-ng to 0.5.0 + # 0.14.0 * simplified tokio dep diff --git a/Cargo.toml b/Cargo.toml index f6c731898b2..ed2bd28f5f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quickjs_runtime" -version = "0.14.1" +version = "0.14.2" authors = ["Andries Hiemstra "] edition = "2021" description = "Wrapper API and utils for the QuickJS JavaScript engine with support for Promise, Modules, Async/await" @@ -13,7 +13,7 @@ readme = "README.md" categories = ["development-tools"] [features] -default = ["console", "setimmediate", "setinterval", "settimeout", "typescript", "bellard"] +default = ["console", "setimmediate", "setinterval", "settimeout", "typescript", "quickjs-ng"] console = [] settimeout = [] setinterval = [] @@ -31,7 +31,7 @@ backtrace = "0.3.67" #libquickjs-sys = {package="hirofa-quickjs-sys", git='https://github.com/HiRoFa/quickjs-sys'} #libquickjs-sys = {package="hirofa-quickjs-sys", path='../quickjs-sys', default-features=false} -libquickjs-sys = {package="hirofa-quickjs-sys", version="0.5.0", default-features=false} +libquickjs-sys = {package="hirofa-quickjs-sys", version="0.6.0", default-features=false} lazy_static = "1.4.0" log = "0.4" num_cpus = "1"