From 84d48b5553a10d787c730467d4dc4a35bdc380c5 Mon Sep 17 00:00:00 2001 From: rusty1s Date: Wed, 7 Feb 2024 12:54:40 +0000 Subject: [PATCH] update --- CHANGELOG.md | 7 ++++++- CMakeLists.txt | 2 +- pyg_lib/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 873f48e97..122c4106f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,12 @@ 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/). -## [0.4.0] - 2023-MM-DD +## [0.5.0] - 2023-MM-DD +### Added +### Changed +### Removed + +## [0.4.0] - 2024-02-07 ### Added - Added PyTorch 2.2 support ([#294](https://github.com/pyg-team/pyg-lib/pull/294)) - Added `softmax_csr` implementation ([#264](https://github.com/pyg-team/pyg-lib/pull/264), [#282](https://github.com/pyg-team/pyg-lib/pull/282)) diff --git a/CMakeLists.txt b/CMakeLists.txt index 73e4f0af6..4365a6e92 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.12) project(pyg) set(CMAKE_CXX_STANDARD 17) -set(PYG_VERSION 0.3.1) +set(PYG_VERSION 0.4.0) option(BUILD_TEST "Enable testing" OFF) option(BUILD_BENCHMARK "Enable benchmarks" OFF) diff --git a/pyg_lib/__init__.py b/pyg_lib/__init__.py index 573c008bf..62a9aa74b 100644 --- a/pyg_lib/__init__.py +++ b/pyg_lib/__init__.py @@ -11,7 +11,7 @@ from .home import get_home_dir, set_home_dir -__version__ = '0.3.1' +__version__ = '0.4.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 ade23f6a0..4ea063ff2 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ from setuptools import Extension, find_packages, setup from setuptools.command.build_ext import build_ext -__version__ = '0.3.1' +__version__ = '0.4.0' URL = 'https://github.com/pyg-team/pyg-lib'