Skip to content

Commit

Permalink
Merge pull request #57 from kotolex/feature/ver_2_0_4
Browse files Browse the repository at this point in the history
version 1.0.2
  • Loading branch information
kotolex authored Oct 8, 2024
2 parents 8b21ec8 + 5ba024a commit 6a4d43e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)

Expand All @@ -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.)
Expand Down
3 changes: 3 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }]
Expand Down
2 changes: 1 addition & 1 deletion tests/integration_tests/test_functions_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__':
Expand Down

0 comments on commit 6a4d43e

Please sign in to comment.