Skip to content

Commit

Permalink
Upgrade V8 to v12.0.267.8
Browse files Browse the repository at this point in the history
  • Loading branch information
buffer committed Dec 4, 2023
1 parent 23e8811 commit a1078d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
V8_HOME = os.environ.get('V8_HOME', os.path.join(STPYV8_HOME, 'v8'))

V8_GIT_URL = "https://chromium.googlesource.com/v8/v8.git"
V8_GIT_TAG_STABLE = "11.9.169.7"
V8_GIT_TAG_STABLE = "12.0.267.8"
V8_GIT_TAG_MASTER = "master"
V8_GIT_TAG = V8_GIT_TAG_STABLE
DEPOT_GIT_URL = "https://chromium.googlesource.com/chromium/tools/depot_tools.git"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_Engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class TestEngine(unittest.TestCase):
def testClassProperties(self):
with STPyV8.JSContext():
self.assertTrue(str(STPyV8.JSEngine.version).startswith("11."))
self.assertTrue(str(STPyV8.JSEngine.version).startswith("12."))
self.assertFalse(STPyV8.JSEngine.dead)

def testCompile(self):
Expand Down

0 comments on commit a1078d4

Please sign in to comment.