Bump supported versions (#2205)

This commit is contained in:
Rushmore Mushambi 2023-07-02 00:55:11 +02:00 committed by GitHub
parent 315c6e1125
commit c590f9c923
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,7 +30,7 @@ use wasm_bindgen_futures::spawn_local as spawn;
/// A specialized `Result` type /// A specialized `Result` type
pub type Result<T> = std::result::Result<T, crate::Error>; pub type Result<T> = std::result::Result<T, crate::Error>;
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"; const LOG: &str = "surrealdb::api";
/// Connection trait implemented by supported engines /// Connection trait implemented by supported engines