File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
doc/contributing/maintaining Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ This a list of all the dependencies:
3030* [ simdutf 3.2.9] [ ]
3131* [ undici 5.22.1] [ ]
3232* [ uvwasi 0.0.16] [ ]
33- * [ v8 11.3.244.8] [ ]
33+ * [ V8 11.3.244.8] [ ]
3434* [ zlib 1.2.13] [ ]
3535
3636Any code which meets one or more of these conditions should
@@ -305,7 +305,7 @@ implement WASI calls.
305305Under the hood, uvwasi leverages libuv where possible for maximum portability.
306306See [ maintaining-web-assembly] [ ] for more informations.
307307
308- ### v8 11.3.244.8
308+ ### V8 11.3.244.8
309309
310310[ V8] ( https://chromium.googlesource.com/v8/v8.git/ ) is Google's open source
311311high-performance JavaScript and WebAssembly engine, written in C++.
Original file line number Diff line number Diff line change @@ -26,8 +26,10 @@ CURRENT_PATCH_VERSION=$(grep "#define V8_PATCH_LEVEL" "$DEPS_DIR/v8/include/v8-v
2626NEW_VERSION=" $CURRENT_MAJOR_VERSION .$CURRENT_MINOR_VERSION .$CURRENT_BUILD_VERSION .$CURRENT_PATCH_VERSION "
2727
2828
29- # Update the version number
29+ # Update the version number. We have to call it twice because V8 is written
30+ # both in lowercase and uppdercase
3031update_dependency_version " v8" " $NEW_VERSION "
32+ update_dependency_version " V8" " $NEW_VERSION "
3133
3234echo " All done!"
3335echo " "
You can’t perform that action at this time.
0 commit comments