diff options
author | Michaƫl Zasso <targos@protonmail.com> | 2020-10-21 10:28:47 +0200 |
---|---|---|
committer | Node.js GitHub Bot <github-bot@iojs.org> | 2020-10-21 14:50:54 +0000 |
commit | 66ab2bdcc963331841e2a009c9b3831a9d85a5d0 (patch) | |
tree | e82af6d18afb5b723ae0b10c1bea3e0016fd4295 /deps | |
parent | 610c68c4587db1ed47a074f28a527cc24223c7a6 (diff) | |
download | node-new-66ab2bdcc963331841e2a009c9b3831a9d85a5d0.tar.gz |
deps: V8: set correct V8 version patch number
The update to V8 8.6 already included the changes from that version,
but it wasn't tagged yet. Having the wrong version in tree breaks
node-core-utils.
PR-URL: https://github.com/nodejs/node/pull/35732
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Myles Borins <myles.borins@gmail.com>
Reviewed-By: Beth Griggs <bgriggs@redhat.com>
Diffstat (limited to 'deps')
-rw-r--r-- | deps/v8/include/v8-version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/include/v8-version.h b/deps/v8/include/v8-version.h index 5d4e5bc892..8060900855 100644 --- a/deps/v8/include/v8-version.h +++ b/deps/v8/include/v8-version.h @@ -11,7 +11,7 @@ #define V8_MAJOR_VERSION 8 #define V8_MINOR_VERSION 6 #define V8_BUILD_NUMBER 395 -#define V8_PATCH_LEVEL 16 +#define V8_PATCH_LEVEL 17 // Use 1 for candidates and 0 otherwise. // (Boolean macro values are not supported by all preprocessors.) |