diff --git a/CHANGELOG.md b/CHANGELOG.md index 679ab09de0..2468e4aa37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,19 +4,19 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## TBD +## [0.0.9] - 2022-02-09 ### Added - Compositional Attention [#41] - Experimental Ragged attention [#189] +- Mixture of Experts [#181] +- BlockSparseTensor [#202] +- nd-tensor support for triton softmax [#210] ### Fixed - bugfix Favor, single feature map [#183] - sanity check blocksparse settings [#207] - fixed some pickability [#204] -### Added -- Mixture of Experts [#181] - ## [0.0.8] - 2022-01-07 ### Fixed - Much faster fused dropout [#164] diff --git a/docs/source/conf.py b/docs/source/conf.py index 8ec567a7a2..a9d71e11ea 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -35,7 +35,7 @@ author = "Facebook AI Research" # The full version, including alpha/beta/rc tags -release = "0.0.8" +release = "0.0.9" # -- General configuration --------------------------------------------------- diff --git a/xformers/__init__.py b/xformers/__init__.py index 829bb0939e..456e415b34 100644 --- a/xformers/__init__.py +++ b/xformers/__init__.py @@ -8,7 +8,7 @@ import torch # Please update the doc version in docs/source/conf.py as well. -__version__ = "0.0.8" +__version__ = "0.0.9" _is_sparse_available = True _is_triton_available = torch.cuda.is_available()