From c590f9c923faed0faa594cbd18283b32c2ea35af Mon Sep 17 00:00:00 2001 From: Rushmore Mushambi Date: Sun, 2 Jul 2023 00:55:11 +0200 Subject: [PATCH] Bump supported versions (#2205) --- lib/src/api/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/api/mod.rs b/lib/src/api/mod.rs index 379100ff..8cdc53d8 100644 --- a/lib/src/api/mod.rs +++ b/lib/src/api/mod.rs @@ -30,7 +30,7 @@ use wasm_bindgen_futures::spawn_local as spawn; /// A specialized `Result` type pub type Result = std::result::Result; -const SUPPORTED_VERSIONS: (&str, &str) = (">=1.0.0-beta.8, <2.0.0", "20221030.c12a1cc"); +const SUPPORTED_VERSIONS: (&str, &str) = (">=1.0.0-beta.9, <2.0.0", "20230701.55918b7c"); const LOG: &str = "surrealdb::api"; /// Connection trait implemented by supported engines