From 0448ac303d12aa4a7d99b53b09ced56b42e0e587 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Cabrera?= Date: Tue, 30 Apr 2024 13:28:56 -0400 Subject: [PATCH] Use up to date version config in build.rs This commit fixes the QuickJS version used in the build file, which should match the version defined in quickjs/VERSION. --- sys/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/build.rs b/sys/build.rs index e05027cb..c7e8552a 100644 --- a/sys/build.rs +++ b/sys/build.rs @@ -151,7 +151,7 @@ fn main() { let mut defines = vec![ ("_GNU_SOURCE".into(), None), - ("CONFIG_VERSION".into(), Some("\"2020-01-19\"")), + ("CONFIG_VERSION".into(), Some("\"2024-02-14\"")), ("CONFIG_BIGNUM".into(), None), ];