diff --git a/CHANGELOG.md b/CHANGELOG.md index dc38f90e4..779a2e9fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Neo4j Driver Change Log (breaking/major changes only) +## Version 5.1 + + * No breaking or major changes. + + ## Version 5.0 - Python 3.10 support added diff --git a/README.rst b/README.rst index 972fbfd6b..9dea343be 100644 --- a/README.rst +++ b/README.rst @@ -116,23 +116,27 @@ Using the Python Driver 1.7 and connecting to Neo4j 4.x with default connection Version Compatibility ===================== -+------------------+-------+-------+-------+-------+-------+-------+-------+ -| Server \\ Driver | 1.7 | 4.0 | 4.1 | 4.2 | 4.3 | *4.4* | *5.0* | -+==================+=======+=======+=======+=======+=======+=======+=======+ -| Neo4j 3.5 (EOL) | Yes | Yes | ? | ? | ? | ? | ? | -+------------------+-------+-------+-------+-------+-------+-------+-------+ -| Neo4j 4.0 (EOL) | Yes | Yes | Yes | Yes | Yes | Yes | ? | -+------------------+-------+-------+-------+-------+-------+-------+-------+ -| Neo4j 4.1 (EOL) | ? | Yes | Yes | Yes | Yes | Yes | ? | -+------------------+-------+-------+-------+-------+-------+-------+-------+ -| Neo4j 4.2 (EOL) | ? | ? | Yes | Yes | Yes | Yes | ? | -+------------------+-------+-------+-------+-------+-------+-------+-------+ -| Neo4j 4.3 | ? | ? | ? | Yes | Yes | Yes | ? | -+------------------+-------+-------+-------+-------+-------+-------+-------+ -| Neo4j 4.4 (LTS) | ? | ? | ? | ? | Yes | Yes | Yes | -+------------------+-------+-------+-------+-------+-------+-------+-------+ -| Neo4j 5.0 | ? | ? | ? | ? | ? | Yes | Yes | -+------------------+-------+-------+-------+-------+-------+-------+-------+ ++------------------+-------+-------+-------+-------+-------+-------+-------+-------+ +| Server \\ Driver | 1.7 | 4.0 | 4.1 | 4.2 | 4.3 | *4.4* | 5.0 | *5.1* | ++==================+=======+=======+=======+=======+=======+=======+=======+=======+ +| Neo4j 3.5 (EOL) | Yes | Yes | ? | ? | ? | ? | ? | ? | ++------------------+-------+-------+-------+-------+-------+-------+-------+-------+ +| Neo4j 4.0 (EOL) | Yes | Yes | Yes | Yes | Yes | Yes | ? | ? | ++------------------+-------+-------+-------+-------+-------+-------+-------+-------+ +| Neo4j 4.1 (EOL) | ? | Yes | Yes | Yes | Yes | Yes | ? | ? | ++------------------+-------+-------+-------+-------+-------+-------+-------+-------+ +| Neo4j 4.2 (EOL) | ? | ? | Yes | Yes | Yes | Yes | ? | ? | ++------------------+-------+-------+-------+-------+-------+-------+-------+-------+ +| Neo4j 4.3 | ? | ? | ? | Yes | Yes | Yes | ? | ? | ++------------------+-------+-------+-------+-------+-------+-------+-------+-------+ +| Neo4j 4.4 (LTS) | ? | ? | ? | ? | Yes | Yes | Yes | Yes | ++------------------+-------+-------+-------+-------+-------+-------+-------+-------+ +| Neo4j 5.0 (EOL) | ? | ? | ? | ? | ? | Yes | Yes | Yes | ++------------------+-------+-------+-------+-------+-------+-------+-------+-------+ +| Neo4j 5.1 | ? | ? | ? | ? | ? | ? | Yes | Yes | ++------------------+-------+-------+-------+-------+-------+-------+-------+-------+ + +Table as of Neo4j 5.1 and Python Driver 5.1 are the latest available versions. * *emphasized*: currently supported driver versions * Yes: supported combination, although only the common set of features diff --git a/docs/source/index.rst b/docs/source/index.rst index c852ecc71..793f8a9a8 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -6,6 +6,7 @@ The Official Neo4j Driver for Python. Neo4j versions supported: +* Neo4j 5.1 * Neo4j 5.0 * Neo4j 4.4 diff --git a/neo4j/_meta.py b/neo4j/_meta.py index 970ead8a3..90ed999fb 100644 --- a/neo4j/_meta.py +++ b/neo4j/_meta.py @@ -28,7 +28,7 @@ # Can be automatically overridden in builds package = "neo4j" -version = "5.0.dev0" +version = "5.1.dev0" def get_user_agent():