Skip to content

Commit 589222f

Browse files
committed
change version for 0.9.4 release
1 parent 77c9160 commit 589222f

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717

1818

1919
## News
20+
- 2024-01-31 -> **v0.9.4** is now available! Fix some bugs and more datasets are included!
21+
- 2024-01-31 -> **v0.9.4** 正式发布! 修复了若干bug,包含更多数据集!
2022
- 2022-12-28 -> **v0.9.3** is now available! More datasets and operations of hypergraph are included!
2123
- 2022-12-28 -> **v0.9.3** 正式发布! 包含更多数据集和超图操作!
2224
- 2022-09-25 -> **v0.9.2** is now available! More datasets, SOTA models, and visualizations are included!
@@ -75,13 +77,13 @@ The Optuna library endows DHG with the Auto-ML ability. DHG supports automatical
7577
## Installation
7678

7779

78-
Current, the stable version of **DHG** is 0.9.3. You can install it with ``pip`` as follows:
80+
Current, the stable version of **DHG** is 0.9.4. You can install it with ``pip`` as follows:
7981

8082
```python
8183
pip install dhg
8284
```
8385

84-
You can also try the nightly version (0.9.4) of **DHG** library with ``pip`` as follows:
86+
You can also try the nightly version (0.9.5) of **DHG** library with ``pip`` as follows:
8587

8688
```python
8789
pip install git+https://github.com/iMoonLab/DeepHypergraph.git

dhg/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
from ._global import AUTHOR_EMAIL, CACHE_ROOT, DATASETS_ROOT, REMOTE_DATASETS_ROOT
1616

17-
__version__ = "0.9.4"
17+
__version__ = "0.9.5"
1818

1919
__all__ = {
2020
"AUTHOR_EMAIL",

docs/source/start/install.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ Installation
99
- Python >= 3.8
1010
- Pytorch >= 1.12
1111

12-
Current, the stable version of **DHG** is 0.9.3. You can install it with ``pip`` as follows:
12+
Current, the stable version of **DHG** is 0.9.4. You can install it with ``pip`` as follows:
1313

1414
.. code-block:: bash
1515
1616
pip install dhg
1717
18-
You can also try the nightly version (0.9.4) of **DHG** library with ``pip`` as follows:
18+
You can also try the nightly version (0.9.5) of **DHG** library with ``pip`` as follows:
1919

2020
.. code-block:: bash
2121

docs/source/zh/start/install.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
- Pytorch >= 1.12
1212

1313

14-
目前, **DHG** 的最新稳定版本 **0.9.3** 已经发布,可以使用 ``pip`` 指令直接安装:
14+
目前, **DHG** 的最新稳定版本 **0.9.4** 已经发布,可以使用 ``pip`` 指令直接安装:
1515

1616
.. code-block:: bash
1717
1818
pip install dhg
1919
20-
如果您想尝试最新的日构建版本(nightly version) **0.9.4** ,可以使用以下指令安装:
20+
如果您想尝试最新的日构建版本(nightly version) **0.9.5** ,可以使用以下指令安装:
2121

2222
.. code-block:: bash
2323

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "dhg"
3-
version = "0.9.4"
3+
version = "0.9.5"
44
description = "DHG is a Deep Learning Framework for Graph Neural Network and Hypergraph Neural Networks."
55
authors = ["yifanfeng97 <[email protected]>"]
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)