From 2599737d6f658f3515661ea5cfcf4db46d8fca69 Mon Sep 17 00:00:00 2001 From: Meir Shpilraien Date: Tue, 19 Dec 2023 14:44:57 +0200 Subject: [PATCH] Upgrade V8 version to 12.0.267.13 --- build.rs | 2 +- v8_c_api/src/v8include/v8-version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.rs b/build.rs index 25299ed..f3e2de4 100644 --- a/build.rs +++ b/build.rs @@ -24,7 +24,7 @@ lazy_static::lazy_static! { static ref PROFILE: String = env::var("PROFILE").expect("PROFILE env var was not given"); - static ref V8_DEFAULT_VERSION: &'static str = "12.0.267.12"; + static ref V8_DEFAULT_VERSION: &'static str = "12.0.267.13"; static ref V8_VERSION: String = env::var("V8_VERSION").map(|v| if v == "default" {V8_DEFAULT_VERSION.to_string()} else {v}).unwrap_or(V8_DEFAULT_VERSION.to_string()); static ref V8_HEADERS_PATH: String = env::var("V8_HEADERS_PATH").unwrap_or("v8_c_api/libv8.include.zip".into()); static ref V8_HEADERS_URL: String = env::var("V8_HEADERS_URL").unwrap_or(format!("http://redismodules.s3.amazonaws.com/redisgears/dependencies/libv8.{}.include.zip", *V8_VERSION)); diff --git a/v8_c_api/src/v8include/v8-version.h b/v8_c_api/src/v8include/v8-version.h index f808d01..1db886b 100644 --- a/v8_c_api/src/v8include/v8-version.h +++ b/v8_c_api/src/v8include/v8-version.h @@ -11,7 +11,7 @@ #define V8_MAJOR_VERSION 12 #define V8_MINOR_VERSION 0 #define V8_BUILD_NUMBER 267 -#define V8_PATCH_LEVEL 12 +#define V8_PATCH_LEVEL 13 // Use 1 for candidates and 0 otherwise. // (Boolean macro values are not supported by all preprocessors.)