Skip to content

Commit

Permalink
Merge pull request #120 from cloudflare/v8-13.0
Browse files Browse the repository at this point in the history
Google V8 - Branch 13.0
  • Loading branch information
buffer authored Oct 18, 2024
2 parents 998cf43 + 307d3de commit c9501b4
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 = "12.9.202.27"
V8_GIT_TAG_STABLE = "13.0.245.16"
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("12."))
self.assertTrue(str(STPyV8.JSEngine.version).startswith("13."))
self.assertFalse(STPyV8.JSEngine.dead)

def testCompile(self):
Expand Down

0 comments on commit c9501b4

Please sign in to comment.