diff --git a/CHANGELOG.md b/CHANGELOG.md index ce984439..fe7b8727 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,24 +1,31 @@ # Changelog All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] ### Added +### Changed +### Deprecated +### Removed +### Fixed +### Security + +## [0.6.0] - 2026-03-24 +### Added - Added PyTorch 2.11 support ([#608](https://github.com/pyg-team/pyg-lib/pull/608)) - Added Python 3.14 support ([#581](https://github.com/pyg-team/pyg-lib/pull/581), [#582](https://github.com/pyg-team/pyg-lib/pull/582), [#583](https://github.com/pyg-team/pyg-lib/pull/583)) - Migrated `rusty1s/pytorch_spline_conv` to `pyg-lib` ([#566](https://github.com/pyg-team/pyg-lib/pull/566), [#567](https://github.com/pyg-team/pyg-lib/pull/567), [#568](https://github.com/pyg-team/pyg-lib/pull/568), [#569](https://github.com/pyg-team/pyg-lib/pull/569), [#570](https://github.com/pyg-team/pyg-lib/pull/570), [#572](https://github.com/pyg-team/pyg-lib/pull/572)) +- Migrated `rusty1s/pytorch_cluster` to `pyg-lib` ([#585](https://github.com/pyg-team/pyg-lib/pull/585), [#586](https://github.com/pyg-team/pyg-lib/pull/586), [#587](https://github.com/pyg-team/pyg-lib/pull/587), [#588](https://github.com/pyg-team/pyg-lib/pull/588), [#589](https://github.com/pyg-team/pyg-lib/pull/589), [#590](https://github.com/pyg-team/pyg-lib/pull/590), [#591](https://github.com/pyg-team/pyg-lib/pull/591), [#592](https://github.com/pyg-team/pyg-lib/pull/592), [#593](https://github.com/pyg-team/pyg-lib/pull/593), [#594](https://github.com/pyg-team/pyg-lib/pull/594), [#595](https://github.com/pyg-team/pyg-lib/pull/595)) - Added CUDA 13.0 support on Windows ([#580](https://github.com/pyg-team/pyg-lib/pull/580)) - Added PyTorch 2.10 support ([#561](https://github.com/pyg-team/pyg-lib/pull/561)) - Added PyTorch 2.9 support ([#536](https://github.com/pyg-team/pyg-lib/pull/536)) - Added macOS 11 support ([#558](https://github.com/pyg-team/pyg-lib/pull/558)) -### Changed -### Deprecated ### Removed - Removed CUDA 11.8 support ([#556](https://github.com/pyg-team/pyg-lib/pull/556)) - Removed PyTorch 2.6 and 2.7 support ([#556](https://github.com/pyg-team/pyg-lib/pull/556)) -### Fixed -### Security ## [0.5.0] - 2025-10-14 ### Added diff --git a/CMakeLists.txt b/CMakeLists.txt index 53bdf9f9..ea0eb16f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ project(pyg) set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_SHARED_LIBRARY_PREFIX "lib") -set(PYG_VERSION 0.6.0) +set(PYG_VERSION 0.7.0) set(NO_METIS 0) option(BUILD_TEST "Enable testing" OFF) diff --git a/pyg_lib/__init__.py b/pyg_lib/__init__.py index 12096559..88df90f4 100644 --- a/pyg_lib/__init__.py +++ b/pyg_lib/__init__.py @@ -7,7 +7,7 @@ from pyg_lib.home import get_home_dir, set_home_dir -__version__ = '0.6.0' +__version__ = '0.7.0' # * `libpyg.so`: The name of the shared library file. # * `torch.ops.pyg`: The used namespace. diff --git a/setup.py b/setup.py index ab9d61d4..ae02eb19 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ from setuptools import Extension, find_packages, setup from setuptools.command.build_ext import build_ext -__version__ = '0.6.0' +__version__ = '0.7.0' URL = 'https://github.com/pyg-team/pyg-lib'