Skip to content

Commit

Permalink
Increase pyg-lib version to 0.2.0 (#218)
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty1s authored Mar 22, 2023
1 parent 3628513 commit 930f72f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +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.3.0] - 2023-MM-DD
### Added
### Changed
### Removed

## [0.2.0] - 2023-MM-DD
## [0.2.0] - 2023-03-22
### Added
- Added PyTorch 2.0 support ([#214](https://github.com/pyg-team/pyg-lib/pull/214))
- `neighbor_sample` routines now also return information about the number of sampled nodes/edges per layer ([#197](https://github.com/pyg-team/pyg-lib/pull/197))
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.12)
project(pyg)
set(CMAKE_CXX_STANDARD 14)
set(PYG_VERSION 0.1.0)
set(PYG_VERSION 0.2.0)

option(BUILD_TEST "Enable testing" OFF)
option(BUILD_BENCHMARK "Enable benchmarks" OFF)
Expand Down
2 changes: 1 addition & 1 deletion pyg_lib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from .home import get_home_dir, set_home_dir

__version__ = '0.1.0'
__version__ = '0.2.0'

# * `libpyg.so`: The name of the shared library file.
# * `torch.ops.pyg`: The used namespace.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from setuptools import Extension, find_packages, setup
from setuptools.command.build_ext import build_ext

__version__ = '0.1.0'
__version__ = '0.2.0'
URL = 'https://github.com/pyg-team/pyg-lib'


Expand Down

0 comments on commit 930f72f

Please sign in to comment.