Skip to content

Commit 99c844f

Browse files
authored
Bump to 4.4.0 (#614)
1 parent a047733 commit 99c844f

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

ChangeLog.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@ Starting with v1.31.6, this file will contain a record of major features and upd
44

55
## Upcoming
66

7+
## Release 4.4.0 (June 10, 2024)
8+
79
- Added `%reset_graph` line magic ([Link to PR](https://github.com/aws/graph-notebook/pull/610))
8-
- Added `%get_graph` line magic and enabled `%status` for Neptune Analytics ([Link to PR](https://github.com/aws/graph-notebook/pull/611))
10+
- Added `%get_graph` line magic, support `%status` for Neptune Analytics ([Link to PR](https://github.com/aws/graph-notebook/pull/611))
911
- Added `%%oc --plan-cache` support for Neptune DB ([Link to PR](https://github.com/aws/graph-notebook/pull/613))
1012
- Upgraded to Gremlin-Python 3.7 ([Link to PR](https://github.com/aws/graph-notebook/pull/597))
1113

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ python3 setup.py bdist_wheel
397397

398398
You should now be able to find the built distribution at
399399

400-
`./dist/graph_notebook-4.3.1-py3-none-any.whl`
400+
`./dist/graph_notebook-4.4.0-py3-none-any.whl`
401401

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

@@ -408,7 +408,7 @@ pip install graph-notebook
408408
with
409409

410410
``` python
411-
pip install ./dist/graph_notebook-4.3.1-py3-none-any.whl
411+
pip install ./dist/graph_notebook-4.4.0-py3-none-any.whl
412412
```
413413

414414
## Contributing Guidelines

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ nbclient<=0.7.0
99
jupyter-contrib-nbextensions<=0.7.0
1010
widgetsnbextension<=3.6.1
1111
gremlinpython>=3.5.1,<=3.7.2
12-
requests>=2.27.0,<=2.31.0
12+
requests>=2.32.0,<=2.32.2
1313
ipython>=7.16.1,<=8.10.0
1414
ipykernel==5.3.4
1515
ipyfilechooser==0.6.0

src/graph_notebook/__init__.py

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

6-
__version__ = '4.3.1'
6+
__version__ = '4.4.0'

src/graph_notebook/widgets/package.json

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

0 commit comments

Comments
 (0)