Skip to content

Bump version to 5.1 #825

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
38 changes: 21 additions & 17 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ The Official Neo4j Driver for Python.

Neo4j versions supported:

* Neo4j 5.1
* Neo4j 5.0
* Neo4j 4.4

Expand Down
2 changes: 1 addition & 1 deletion neo4j/_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

# Can be automatically overridden in builds
package = "neo4j"
version = "5.0.dev0"
version = "5.1.dev0"


def get_user_agent():
Expand Down