Skip to content

Commit ff87d1b

Browse files
authored
Prepare 0.5.0 release (#535)
1 parent 7d94553 commit ff87d1b

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
55

6-
## [0.5.0] - 2023-MM-DD
6+
## [0.5.0] - 2025-10-14
77
### Added
88
- Added support for `manylinux_2_28` wheels built with CUDA in nightly releases ([#496](https://github.com/pyg-team/pyg-lib/pull/496))
99
- Added support for `manylinux_2_28` wheels in nightly releases ([#480](https://github.com/pyg-team/pyg-lib/pull/480))
@@ -19,7 +19,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
1919
- Added macOS Apple Silicon support ([#310](https://github.com/pyg-team/pyg-lib/pull/310))
2020
### Changed
2121
### Removed
22-
- Removed Support for Python 1.13-2.5 ([#532](https://github.com/pyg-team/pyg-lib/pull/532))
22+
- Removed Support for PyTorch 1.13-2.5 ([#532](https://github.com/pyg-team/pyg-lib/pull/532))
2323
- Dropped Python 3.9 support ([#525](https://github.com/pyg-team/pyg-lib/pull/525))
2424
- Dropped Python 3.8 support ([#356](https://github.com/pyg-team/pyg-lib/pull/356))
2525
- Removed linking to Python ([#462](https://github.com/pyg-team/pyg-lib/pull/462))

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ project(pyg)
33
set(CMAKE_CXX_STANDARD 17)
44
set(CMAKE_CXX_STANDARD_REQUIRED ON)
55
set(CMAKE_SHARED_LIBRARY_PREFIX "lib")
6-
set(PYG_VERSION 0.4.0)
6+
set(PYG_VERSION 0.5.0)
77
set(NO_METIS 0)
88

99
option(BUILD_TEST "Enable testing" OFF)

pyg_lib/__init__.py

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

88
from pyg_lib.home import get_home_dir, set_home_dir
99

10-
__version__ = '0.4.0'
10+
__version__ = '0.5.0'
1111

1212
# * `libpyg.so`: The name of the shared library file.
1313
# * `torch.ops.pyg`: The used namespace.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from setuptools import Extension, find_packages, setup
1414
from setuptools.command.build_ext import build_ext
1515

16-
__version__ = '0.4.0'
16+
__version__ = '0.5.0'
1717
URL = 'https://github.com/pyg-team/pyg-lib'
1818

1919

0 commit comments

Comments
 (0)