From ece793cc5179a807fbe2f3230121094717b089a1 Mon Sep 17 00:00:00 2001 From: "Meir Shpilraien (Spielrein)" Date: Sun, 31 Mar 2024 15:32:11 +0300 Subject: [PATCH] Update version to 12.3.219.15 (#109) --- 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 b2dc067..9b8de2d 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.3.219.14"; + static ref V8_DEFAULT_VERSION: &'static str = "12.3.219.15"; 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 6ae0806..66309d0 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 3 #define V8_BUILD_NUMBER 219 -#define V8_PATCH_LEVEL 14 +#define V8_PATCH_LEVEL 15 // Use 1 for candidates and 0 otherwise. // (Boolean macro values are not supported by all preprocessors.)