diff --git a/Cargo.lock b/Cargo.lock index 0b80bb356f9887..1bafb195911e7d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -792,7 +792,7 @@ checksum = "8d7439c3735f405729d52c3fbbe4de140eaf938a1fe47d227c27f8254d4302a5" [[package]] name = "deno" -version = "1.30.3" +version = "1.31.0" dependencies = [ "async-trait", "atty", @@ -910,7 +910,7 @@ dependencies = [ [[package]] name = "deno_bench_util" -version = "0.83.0" +version = "0.84.0" dependencies = [ "bencher", "deno_core", @@ -920,7 +920,7 @@ dependencies = [ [[package]] name = "deno_broadcast_channel" -version = "0.83.0" +version = "0.84.0" dependencies = [ "async-trait", "deno_core", @@ -930,7 +930,7 @@ dependencies = [ [[package]] name = "deno_cache" -version = "0.21.0" +version = "0.22.0" dependencies = [ "async-trait", "deno_core", @@ -942,14 +942,14 @@ dependencies = [ [[package]] name = "deno_console" -version = "0.89.0" +version = "0.90.0" dependencies = [ "deno_core", ] [[package]] name = "deno_core" -version = "0.171.0" +version = "0.172.0" dependencies = [ "anyhow", "bytes", @@ -974,7 +974,7 @@ dependencies = [ [[package]] name = "deno_crypto" -version = "0.103.0" +version = "0.104.0" dependencies = [ "aes", "aes-gcm", @@ -1042,7 +1042,7 @@ dependencies = [ [[package]] name = "deno_fetch" -version = "0.113.0" +version = "0.114.0" dependencies = [ "bytes", "data-url", @@ -1059,7 +1059,7 @@ dependencies = [ [[package]] name = "deno_ffi" -version = "0.76.0" +version = "0.77.0" dependencies = [ "deno_core", "dlopen", @@ -1074,7 +1074,7 @@ dependencies = [ [[package]] name = "deno_flash" -version = "0.25.0" +version = "0.26.0" dependencies = [ "deno_core", "deno_tls", @@ -1114,7 +1114,7 @@ dependencies = [ [[package]] name = "deno_http" -version = "0.84.0" +version = "0.85.0" dependencies = [ "async-compression", "base64 0.13.1", @@ -1156,7 +1156,7 @@ dependencies = [ [[package]] name = "deno_lockfile" -version = "0.5.0" +version = "0.6.0" dependencies = [ "anyhow", "ring", @@ -1167,7 +1167,7 @@ dependencies = [ [[package]] name = "deno_napi" -version = "0.19.0" +version = "0.20.0" dependencies = [ "deno_core", "libloading", @@ -1175,7 +1175,7 @@ dependencies = [ [[package]] name = "deno_net" -version = "0.81.0" +version = "0.82.0" dependencies = [ "deno_core", "deno_tls", @@ -1189,7 +1189,7 @@ dependencies = [ [[package]] name = "deno_node" -version = "0.26.0" +version = "0.27.0" dependencies = [ "deno_core", "digest 0.10.6", @@ -1212,7 +1212,7 @@ dependencies = [ [[package]] name = "deno_ops" -version = "0.49.0" +version = "0.50.0" dependencies = [ "once_cell", "pmutil", @@ -1228,7 +1228,7 @@ dependencies = [ [[package]] name = "deno_runtime" -version = "0.97.0" +version = "0.98.0" dependencies = [ "atty", "deno_ast", @@ -1295,7 +1295,7 @@ dependencies = [ [[package]] name = "deno_tls" -version = "0.76.0" +version = "0.77.0" dependencies = [ "deno_core", "once_cell", @@ -1309,7 +1309,7 @@ dependencies = [ [[package]] name = "deno_url" -version = "0.89.0" +version = "0.90.0" dependencies = [ "deno_bench_util", "deno_core", @@ -1321,7 +1321,7 @@ dependencies = [ [[package]] name = "deno_web" -version = "0.120.0" +version = "0.121.0" dependencies = [ "async-trait", "base64-simd", @@ -1339,7 +1339,7 @@ dependencies = [ [[package]] name = "deno_webgpu" -version = "0.90.0" +version = "0.91.0" dependencies = [ "deno_core", "raw-window-handle", @@ -1351,7 +1351,7 @@ dependencies = [ [[package]] name = "deno_webidl" -version = "0.89.0" +version = "0.90.0" dependencies = [ "deno_bench_util", "deno_core", @@ -1359,7 +1359,7 @@ dependencies = [ [[package]] name = "deno_websocket" -version = "0.94.0" +version = "0.95.0" dependencies = [ "deno_core", "deno_tls", @@ -1373,7 +1373,7 @@ dependencies = [ [[package]] name = "deno_webstorage" -version = "0.84.0" +version = "0.85.0" dependencies = [ "deno_core", "deno_web", @@ -2942,7 +2942,7 @@ dependencies = [ [[package]] name = "napi_sym" -version = "0.19.0" +version = "0.20.0" dependencies = [ "proc-macro2 1.0.51", "quote 1.0.23", @@ -4098,7 +4098,7 @@ dependencies = [ [[package]] name = "serde_v8" -version = "0.82.0" +version = "0.83.0" dependencies = [ "bencher", "bytes", diff --git a/Cargo.toml b/Cargo.toml index afb994f25e648a..f10e46c25faccd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,34 +44,34 @@ repository = "https://github.com/denoland/deno" v8 = { version = "0.63.0", default-features = false } deno_ast = { version = "0.24.0", features = ["transpiling"] } -deno_core = { version = "0.171.0", path = "./core" } -deno_ops = { version = "0.49.0", path = "./ops" } -serde_v8 = { version = "0.82.0", path = "./serde_v8" } -deno_runtime = { version = "0.97.0", path = "./runtime" } -napi_sym = { version = "0.19.0", path = "./cli/napi/sym" } -deno_bench_util = { version = "0.83.0", path = "./bench_util" } +deno_core = { version = "0.172.0", path = "./core" } +deno_ops = { version = "0.50.0", path = "./ops" } +serde_v8 = { version = "0.83.0", path = "./serde_v8" } +deno_runtime = { version = "0.98.0", path = "./runtime" } +napi_sym = { version = "0.20.0", path = "./cli/napi/sym" } +deno_bench_util = { version = "0.84.0", path = "./bench_util" } test_util = { path = "./test_util" } -deno_lockfile = { version = "0.5.0", path = "./lockfile" } +deno_lockfile = { version = "0.6.0", path = "./lockfile" } # exts -deno_broadcast_channel = { version = "0.83.0", path = "./ext/broadcast_channel" } -deno_cache = { version = "0.21.0", path = "./ext/cache" } -deno_console = { version = "0.89.0", path = "./ext/console" } -deno_crypto = { version = "0.103.0", path = "./ext/crypto" } -deno_fetch = { version = "0.113.0", path = "./ext/fetch" } -deno_ffi = { version = "0.76.0", path = "./ext/ffi" } -deno_flash = { version = "0.25.0", path = "./ext/flash" } -deno_http = { version = "0.84.0", path = "./ext/http" } -deno_net = { version = "0.81.0", path = "./ext/net" } -deno_node = { version = "0.26.0", path = "./ext/node" } -deno_tls = { version = "0.76.0", path = "./ext/tls" } -deno_url = { version = "0.89.0", path = "./ext/url" } -deno_web = { version = "0.120.0", path = "./ext/web" } -deno_webgpu = { version = "0.90.0", path = "./ext/webgpu" } -deno_webidl = { version = "0.89.0", path = "./ext/webidl" } -deno_websocket = { version = "0.94.0", path = "./ext/websocket" } -deno_webstorage = { version = "0.84.0", path = "./ext/webstorage" } -deno_napi = { version = "0.19.0", path = "./ext/napi" } +deno_broadcast_channel = { version = "0.84.0", path = "./ext/broadcast_channel" } +deno_cache = { version = "0.22.0", path = "./ext/cache" } +deno_console = { version = "0.90.0", path = "./ext/console" } +deno_crypto = { version = "0.104.0", path = "./ext/crypto" } +deno_fetch = { version = "0.114.0", path = "./ext/fetch" } +deno_ffi = { version = "0.77.0", path = "./ext/ffi" } +deno_flash = { version = "0.26.0", path = "./ext/flash" } +deno_http = { version = "0.85.0", path = "./ext/http" } +deno_net = { version = "0.82.0", path = "./ext/net" } +deno_node = { version = "0.27.0", path = "./ext/node" } +deno_tls = { version = "0.77.0", path = "./ext/tls" } +deno_url = { version = "0.90.0", path = "./ext/url" } +deno_web = { version = "0.121.0", path = "./ext/web" } +deno_webgpu = { version = "0.91.0", path = "./ext/webgpu" } +deno_webidl = { version = "0.90.0", path = "./ext/webidl" } +deno_websocket = { version = "0.95.0", path = "./ext/websocket" } +deno_webstorage = { version = "0.85.0", path = "./ext/webstorage" } +deno_napi = { version = "0.20.0", path = "./ext/napi" } anyhow = "1.0.57" async-trait = "0.1.51" diff --git a/Releases.md b/Releases.md index 6143260820f54b..c50531a5b30a3d 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,86 @@ https://github.com/denoland/deno/releases We also have one-line install commands at: https://github.com/denoland/deno_install +### 1.31.0 / 2023.02.23 + +- feat(bench): Add JSON reporter for "deno bench" subcommand (#17595) +- feat(bench): change --json output format (#17888) +- feat(core): allow to specify entry point for snapshotted ES modules (#17771) +- feat(ext/ffi): Replace pointer integers with v8::External objects (#16889) +- feat(ext/http): add 2nd param to handler to get remote address (#17633) +- feat(ext/node): embed std/node into the snapshot (#17724) +- feat(ext/node): implement `node:v8` (#17806) +- feat(install): follow redirects for urls with no path (#17449) +- feat(node): stabilize Node-API (#17553) +- feat(npm): support bare specifiers from package.json in more subcommands and + language server (#17891) +- feat(npm): support npm specifiers in remote modules without `--unstable` + (#17889) +- feat(permissions): grant all permission for a group in permission prompt + (#17140) +- feat(task): add warning about package.json scripts support (#17900) +- feat(task): adjust warning (#17904) +- feat(task): support scripts in package.json (#17887) +- feat: Deprecate 'deno bundle' subcommand (#17695) +- feat: Stabilize Deno.Command API (#17628) +- feat: add more variants to Deno.build.os (#17340) +- feat: add signal option to Deno.resolveDns (#17384) +- feat: auto-discover package.json for npm dependencies (#17272) +- feat: stabilize Deno.osUptime() (#17554) +- feat: start caching npm package version's "bin" entry from npm registry + (#17881) +- feat: support bare specifier resolution with package.json (#17864) +- feat: wire up ext/node to the Node compatibility layer (#17785) +- fix(cli): Add better error message when powershell is missing during upgrade + (#17759) +- fix(cli/graph_util): don't append referrer info for root module errors + (#17730) +- fix(cli/napi): correct name handling in napi property descriptor (#17716) +- fix(cli/napi): handle all property variants in napi_define_properties (#17680) +- fix(core): don't allow to import internal code is snapshot is loaded (#17694) +- fix(core): rebuild when JS sources for snapshotting change (#17876) +- fix(core): remove async op inlining optimization (#17899) +- fix(dts): make Deno.Command accept readonly prop in options.args (#17718) +- fix(ext/console): Only right-align integers in console.table() (#17389) +- fix(ext/ffi): Fix re-ref'ing UnsafeCallback (#17704) +- fix(ext/ffi): improve error messages in FFI module (#17786) +- fix(ext/flash): Always send correct number of bytes when handling HEAD + requests (#17740) +- fix(ext/flash): wrong order of arguments passed to `http1Response` (#17893) +- fix(ext/node): add support for BYOB streams (#17803) +- fix(ext/node): fix node stream (#17874) +- fix(ext/node): fix npm module resolution when --node-modules-dir specified + (#17896) +- fix(ext/node): fix process.uptime (#17839) +- fix(ext/node): fix webcrypto export (#17838) +- fix(ext/websocket): extra ws pongs sent (#17762) +- fix(fmt): make fmt options CLI args less verbose (#17550) +- fix(lint): revert no-deprecated-api for Deno.run (#17880) +- fix(npm): allow resolving from package.json when an import map exists (#17905) +- fix(npm): filter out duplicate packages names in resolution (#17857) +- fix(npm): improve peer dependency resolution (#17835) +- fix(npm): resolve node_modules dir relative to package.json instead of cwd + (#17885) +- fix(npm): support bare specifiers in package.json having a path (#17903) +- fix(ops): Always close cancel handles for read_async/write_async (#17736) +- fix(webgpu): don't default to 0 for setVertexBuffer.size & properly use + webidl.setlike (#17800) +- fix(runtime): Refactor fs error mapping to use unified format (#17719) +- fix(webgpu): use correct op for GPUDevice.createSampler (#17729) +- fix: add WouldBlock error (#17339) +- fix: loading built-in Node modules embedded in the binary (#17777) +- fix: use static Reflect methods in nodeGlobalThis proxy (#17696) +- perf(core): speed up promise hook dispatch (#17616) +- perf(core, runtime): Further improve startup time (#17860) +- perf(ext/ffi): Revert UTF-8 validity check from getCString (#17741) +- perf(ext/node): move winerror binding to rust (#17792) +- perf(http): remove allocations checking upgrade and connection header values + (#17727) +- perf: disable fetching graph cache info except for `deno info` (#17698) +- perf: module info cache - avoid MediaType.to_string() allocation (#17699) +- perf: remove `current_dir()` call in `Deno.mainModule` (#17883) +- perf: use ops for node:crypto ciphers (#17819) + ### 1.30.3 / 2023.02.07 - fix(ext/console): log class for class constructor (#17615) diff --git a/bench_util/Cargo.toml b/bench_util/Cargo.toml index 758a316015a886..1ccca5bb8496bb 100644 --- a/bench_util/Cargo.toml +++ b/bench_util/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_bench_util" -version = "0.83.0" +version = "0.84.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 6c7c8e128272ec..5a35f5ed8e1756 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.30.3" +version = "1.31.0" authors.workspace = true default-run = "deno" edition.workspace = true diff --git a/cli/deno_std.rs b/cli/deno_std.rs index 3ccf526d96593b..1805589cdddda2 100644 --- a/cli/deno_std.rs +++ b/cli/deno_std.rs @@ -5,7 +5,7 @@ use once_cell::sync::Lazy; // WARNING: Ensure this is the only deno_std version reference as this // is automatically updated by the version bump workflow. -static CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.177.0/"; +static CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.178.0/"; pub static CURRENT_STD_URL: Lazy = Lazy::new(|| Url::parse(CURRENT_STD_URL_STR).expect("invalid std url")); diff --git a/cli/napi/sym/Cargo.toml b/cli/napi/sym/Cargo.toml index 8f19ea68bc8375..4b16235f3e0293 100644 --- a/cli/napi/sym/Cargo.toml +++ b/cli/napi/sym/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "napi_sym" -version = "0.19.0" +version = "0.20.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/core/Cargo.toml b/core/Cargo.toml index a246a7efe44b4b..905ebcb00d51ec 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_core" -version = "0.171.0" +version = "0.172.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/broadcast_channel/Cargo.toml b/ext/broadcast_channel/Cargo.toml index c182a7a8f2a36f..dbbc60575cd617 100644 --- a/ext/broadcast_channel/Cargo.toml +++ b/ext/broadcast_channel/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_broadcast_channel" -version = "0.83.0" +version = "0.84.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/cache/Cargo.toml b/ext/cache/Cargo.toml index 4eb4a9da05a493..50a3e2cfb2d6ff 100644 --- a/ext/cache/Cargo.toml +++ b/ext/cache/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_cache" -version = "0.21.0" +version = "0.22.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/console/Cargo.toml b/ext/console/Cargo.toml index 1e3019702ef440..2362526f927245 100644 --- a/ext/console/Cargo.toml +++ b/ext/console/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_console" -version = "0.89.0" +version = "0.90.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/crypto/Cargo.toml b/ext/crypto/Cargo.toml index 095c34d105e48f..43676a6d6c4ce4 100644 --- a/ext/crypto/Cargo.toml +++ b/ext/crypto/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_crypto" -version = "0.103.0" +version = "0.104.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/fetch/Cargo.toml b/ext/fetch/Cargo.toml index 06f7c6b7743f3a..9ad56b4f94cc52 100644 --- a/ext/fetch/Cargo.toml +++ b/ext/fetch/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_fetch" -version = "0.113.0" +version = "0.114.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/ffi/Cargo.toml b/ext/ffi/Cargo.toml index 7a48dd034db18f..32e310d662cc0c 100644 --- a/ext/ffi/Cargo.toml +++ b/ext/ffi/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_ffi" -version = "0.76.0" +version = "0.77.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/flash/Cargo.toml b/ext/flash/Cargo.toml index d62dacd1d02b16..9d1b04756d530d 100644 --- a/ext/flash/Cargo.toml +++ b/ext/flash/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_flash" -version = "0.25.0" +version = "0.26.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/http/Cargo.toml b/ext/http/Cargo.toml index c09f59bf21ec02..4712f2e653c583 100644 --- a/ext/http/Cargo.toml +++ b/ext/http/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_http" -version = "0.84.0" +version = "0.85.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/napi/Cargo.toml b/ext/napi/Cargo.toml index c9ae4acd9831b8..f5056a2d085956 100644 --- a/ext/napi/Cargo.toml +++ b/ext/napi/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_napi" -version = "0.19.0" +version = "0.20.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/net/Cargo.toml b/ext/net/Cargo.toml index fe98408761c733..eb403c13dfe5c5 100644 --- a/ext/net/Cargo.toml +++ b/ext/net/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_net" -version = "0.81.0" +version = "0.82.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/node/Cargo.toml b/ext/node/Cargo.toml index 1a5f4a615f3955..769cd8e234a52d 100644 --- a/ext/node/Cargo.toml +++ b/ext/node/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_node" -version = "0.26.0" +version = "0.27.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/tls/Cargo.toml b/ext/tls/Cargo.toml index 5b047c4c5e7d58..ebae453fe8d6c3 100644 --- a/ext/tls/Cargo.toml +++ b/ext/tls/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_tls" -version = "0.76.0" +version = "0.77.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/url/Cargo.toml b/ext/url/Cargo.toml index d833ab533dcb57..18fc7b174c07f2 100644 --- a/ext/url/Cargo.toml +++ b/ext/url/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_url" -version = "0.89.0" +version = "0.90.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/web/Cargo.toml b/ext/web/Cargo.toml index 863b3f597d893e..4f2ac90b29fa8b 100644 --- a/ext/web/Cargo.toml +++ b/ext/web/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_web" -version = "0.120.0" +version = "0.121.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/webgpu/Cargo.toml b/ext/webgpu/Cargo.toml index 6058cbe3cf82dc..2e8aace5047388 100644 --- a/ext/webgpu/Cargo.toml +++ b/ext/webgpu/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webgpu" -version = "0.90.0" +version = "0.91.0" authors = ["the Deno authors"] edition.workspace = true license = "MIT" diff --git a/ext/webidl/Cargo.toml b/ext/webidl/Cargo.toml index 7a101259ec46dd..e1af8fe72d6d42 100644 --- a/ext/webidl/Cargo.toml +++ b/ext/webidl/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webidl" -version = "0.89.0" +version = "0.90.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/websocket/Cargo.toml b/ext/websocket/Cargo.toml index 8b93a9852bd312..4669516a1e14e7 100644 --- a/ext/websocket/Cargo.toml +++ b/ext/websocket/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_websocket" -version = "0.94.0" +version = "0.95.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/webstorage/Cargo.toml b/ext/webstorage/Cargo.toml index cc5dd1f17d1a2d..568873e51705bf 100644 --- a/ext/webstorage/Cargo.toml +++ b/ext/webstorage/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webstorage" -version = "0.84.0" +version = "0.85.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/lockfile/Cargo.toml b/lockfile/Cargo.toml index 775a755647247d..5af1de5fb962bf 100644 --- a/lockfile/Cargo.toml +++ b/lockfile/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_lockfile" -version = "0.5.0" +version = "0.6.0" edition = "2021" license = "MIT" description = "An implementation of a lockfile used in Deno" diff --git a/ops/Cargo.toml b/ops/Cargo.toml index ca037e2a3f0711..d0e52ae3a3bb7a 100644 --- a/ops/Cargo.toml +++ b/ops/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_ops" -version = "0.49.0" +version = "0.50.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index b2ef0637a8a5c3..f14397afcdba78 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_runtime" -version = "0.97.0" +version = "0.98.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/serde_v8/Cargo.toml b/serde_v8/Cargo.toml index 3d4c850da0eb5c..e0af4312a96c7b 100644 --- a/serde_v8/Cargo.toml +++ b/serde_v8/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "serde_v8" -version = "0.82.0" +version = "0.83.0" authors.workspace = true edition.workspace = true license.workspace = true