Skip to content
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
7 changes: 6 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ Starting with v1.31.6, this file will contain a record of major features and upd

## Upcoming
- Autoformatter for gremlin queries
- Support group matching for multi-label vertices in Gremlin visualization ([Link to Issue](https://github.com/aws/graph-notebook/issues/746))

## Release 5.3.0 (Aug 03, 2026)
- Support group matching for multi-label vertices in Gremlin visualization ([Link to PR](https://github.com/aws/graph-notebook/pull/776))
- Prettify JSON outputs ([Link to PR](https://github.com/aws/graph-notebook/pull/783))
- Update NeptuneML notebooks ([Link to PR](https://github.com/aws/graph-notebook/pull/784))
- Stability improvements

## Release 5.2.0 (Mar 11, 2026)
- Added %degreeDistribution magic command ([PR](https://github.com/aws/graph-notebook/pull/749))
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ python3 -m build .

You should now be able to find the built distribution at

`./dist/graph_notebook-5.2.0-py3-none-any.whl`
`./dist/graph_notebook-5.3.0-py3-none-any.whl`

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

Expand All @@ -440,7 +440,7 @@ pip install graph-notebook
with

``` python
pip install ./dist/graph_notebook-5.2.0-py3-none-any.whl --force-reinstall
pip install ./dist/graph_notebook-5.3.0-py3-none-any.whl --force-reinstall
```

## Contributing Guidelines
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ build-backend = "hatchling.build"

[project]
name = "graph-notebook"
version = "5.2.0"
version = "5.3.0"
description = "Jupyter notebook extension to connect to graph databases"
readme = "README.md"
license = { file = "LICENSE" }
Expand Down
2 changes: 1 addition & 1 deletion src/graph_notebook/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
SPDX-License-Identifier: Apache-2.0
"""

__version__ = '5.2.0'
__version__ = '5.3.0'
2 changes: 1 addition & 1 deletion src/graph_notebook/widgets/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graph_notebook_widgets",
"version": "5.2.0",
"version": "5.3.0",
"author": "amazon",
"description": "A Custom Jupyter Library for rendering NetworkX MultiDiGraphs using vis-network",
"dependencies": {
Expand Down
Loading