Skip to content

Commit 1ee121b

Browse files
theneelshahNeel Shah
andauthored
bump to 5.2.0 (#771)
Co-authored-by: Neel Shah <neeljs@amazon.com>
1 parent 6ee84a1 commit 1ee121b

File tree

5 files changed

+13
-10
lines changed

5 files changed

+13
-10
lines changed

ChangeLog.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,13 @@
33
Starting with v1.31.6, this file will contain a record of major features and updates made in each release of graph-notebook.
44

55
## Upcoming
6-
- Added %degreeDistribution magic command ([PR](https://github.com/aws/graph-notebook/pull/749)) TODO: add to the specific release below when it's released
7-
- Support edgeOnlyLoad parameter for neptune database bulk load operation ([Link to PR](https://github.com/aws/graph-notebook/pull/750))
8-
- Support loading parquet format data for neptune analytics incremental load operation ([Link to PR](https://github.com/aws/graph-notebook/pull/752))
6+
- Autoformatter for gremlin queries
97

8+
## Release 5.2.0 (Mar 11, 2026)
9+
- Added %degreeDistribution magic command ([PR](https://github.com/aws/graph-notebook/pull/749))
10+
- Support loading parquet format data for neptune analytics incremental load operation ([Link to PR](https://github.com/aws/graph-notebook/pull/752))
11+
- Add enable/disable magic for showing graph tab ([Link to PR](https://github.com/aws/graph-notebook/pull/767))
12+
- Stability fixes
1013

1114
## Release 5.1.0 (Oct 26, 2025)
1215
- Fix typos in Sample Notebooks ([Link to PR](https://github.com/aws/graph-notebook/pull/760))

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.1.0-py3-none-any.whl`
432+
`./dist/graph_notebook-5.2.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.1.0-py3-none-any.whl --force-reinstall
443+
pip install ./dist/graph_notebook-5.2.0-py3-none-any.whl --force-reinstall
444444
```
445445

446446
## Contributing Guidelines

pyproject.toml

Lines changed: 2 additions & 2 deletions
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.1.0"
12+
version = "5.2.0"
1313
description = "Jupyter notebook extension to connect to graph databases"
1414
readme = "README.md"
1515
license = { file = "LICENSE" }
@@ -135,4 +135,4 @@ include = [
135135
"src/graph_notebook/**/*.js",
136136
"src/graph_notebook/**/*.yaml",
137137
"src/graph_notebook/**/*.csv"
138-
]
138+
]

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.1.0'
6+
__version__ = '5.2.0'

src/graph_notebook/widgets/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graph_notebook_widgets",
3-
"version": "5.1.0",
3+
"version": "5.2.0",
44
"author": "amazon",
55
"description": "A Custom Jupyter Library for rendering NetworkX MultiDiGraphs using vis-network",
66
"dependencies": {
@@ -151,4 +151,4 @@
151151
"watch:nbextension": "webpack --watch --mode=development",
152152
"watch:labextension": "jupyter labextension watch ."
153153
}
154-
}
154+
}

0 commit comments

Comments
 (0)