diff --git a/README.md b/README.md index 74bb8f4..a8c249d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # README # -Surrealist is a Python tool to work with awesome [SurrealDB](https://docs.surrealdb.com/docs/intro) (support for latest version 2.0.2) +Surrealist is a Python tool to work with awesome [SurrealDB](https://docs.surrealdb.com/docs/intro) (support for latest version 2.0.4) It is **synchronous** and **unofficial**, so if you need async AND/OR official client, go [here](https://github.com/surrealdb/surrealdb.py) @@ -11,7 +11,7 @@ Works and tested on Ubuntu, macOS, Windows 10, can use python 3.8+ (including py * only one small dependency (websocket-client), no need to pull a lot of libraries to your project * fully documented * well tested (on the latest Ubuntu, macOS and Windows 10) - * fully compatible with the latest version of SurrealDB (2.0.2), including [live queries](https://surrealdb.com/products/lq) and [change feeds](https://surrealdb.com/products/cf) + * fully compatible with the latest version of SurrealDB (2.0.4), including [live queries](https://surrealdb.com/products/lq) and [change feeds](https://surrealdb.com/products/cf) * debug mode to see all that goes in and out if you need (using standard logging) * iterator to handle big select queries * QL-builder to explore, generate and use SurrealDB queries (explain, transaction etc.) diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 115fd8a..ec9d9e7 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,4 +1,7 @@ ## Release Notes ## +**Version 1.0.2 (compatible with SurrealDB version 2.0.2):** +- minor fixes + **Version 1.0.1 (compatible with SurrealDB version 2.0.2):** - add run method for connections and run_function for Database (https://surrealdb.com/docs/surrealdb/integration/rpc#run) - add insert_relation method for connections (https://surrealdb.com/docs/surrealdb/integration/rpc#insert_relation) diff --git a/pyproject.toml b/pyproject.toml index 69fde83..607e010 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "surrealist" -version = "1.0.1" +version = "1.0.2" description = "Python client for SurrealDB, latest SurrealDB version compatible, all features supported" readme = "README.md" authors = [{ name = "kotolex", email = "farofwell@gmail.com" }] diff --git a/tests/integration_tests/test_functions_db.py b/tests/integration_tests/test_functions_db.py index dc9d7ad..582d282 100644 --- a/tests/integration_tests/test_functions_db.py +++ b/tests/integration_tests/test_functions_db.py @@ -376,7 +376,7 @@ def test_constants(self): def test_version(self): surreal = Surreal("http://127.0.0.1:8000", 'test', 'test', credentials=('root', 'root')) version = surreal.version() - self.assertTrue("2.0.2" in version, version) + self.assertTrue("2.0." in version, version) if __name__ == '__main__':