Skip to content

Commit 5848a19

Browse files
bump to 5.1.0 (#765)
1 parent e0abf78 commit 5848a19

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

ChangeLog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ Starting with v1.31.6, this file will contain a record of major features and upd
44

55
## Upcoming
66

7+
8+
## Release 5.1.0 (Oct 26, 2025)
9+
- Fix typos in Sample Notebooks ([Link to PR](https://github.com/aws/graph-notebook/pull/760))
10+
- Show graph visualization for bolt queries ([Link to PR](https://github.com/aws/graph-notebook/pull/761))
11+
- Added support for python v3.12 and v3.13 ([Link to PR](https://github.com/aws/graph-notebook/pull/764))
12+
713
## Release 5.0.2 (Aug 19, 2025)
814
- Support edgeOnlyLoad param for load magic ([Link to PR](https://github.com/aws/graph-notebook/pull/750))
915
- Theme support for Graph Notebook Widgets ([Link to PR](https://github.com/aws/graph-notebook/pull/754))

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ python3 -m build .
429429

430430
You should now be able to find the built distribution at
431431

432-
`./dist/graph_notebook-5.0.2-py3-none-any.whl`
432+
`./dist/graph_notebook-5.1.0-py3-none-any.whl`
433433

434434
And use it by following the [installation](https://github.com/aws/graph-notebook#installation) steps, replacing
435435

@@ -440,7 +440,7 @@ pip install graph-notebook
440440
with
441441

442442
``` python
443-
pip install ./dist/graph_notebook-5.0.2-py3-none-any.whl --force-reinstall
443+
pip install ./dist/graph_notebook-5.1.0-py3-none-any.whl --force-reinstall
444444
```
445445

446446
## Contributing Guidelines

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build-backend = "hatchling.build"
99

1010
[project]
1111
name = "graph-notebook"
12-
version = "5.0.2"
12+
version = "5.1.0"
1313
description = "Jupyter notebook extension to connect to graph databases"
1414
readme = "README.md"
1515
license = { file = "LICENSE" }

src/graph_notebook/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
SPDX-License-Identifier: Apache-2.0
44
"""
55

6-
__version__ = '5.0.2'
6+
__version__ = '5.1.0'

src/graph_notebook/widgets/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graph_notebook_widgets",
3-
"version": "5.0.2",
3+
"version": "5.1.0",
44
"author": "amazon",
55
"description": "A Custom Jupyter Library for rendering NetworkX MultiDiGraphs using vis-network",
66
"dependencies": {

0 commit comments

Comments
 (0)