diff --git a/CHANGELOG.md b/CHANGELOG.md index 301a4ac..49074de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# v0.2.1 + +- Move padding into the upper and lower solves (#6, @michaeldeistler) + + # v0.2.0 - Enable `stone` solver for systems that are not powers of two (#5, @michaeldeistler, thanks @briandepasquale). diff --git a/pyproject.toml b/pyproject.toml index 8f4251f..e6ef6c3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "tridiax" -version = "0.2.0" +version = "0.2.1" description = "Solving tridiagonal systems." authors = [ { name = "jaxleyverse", email = "jaxleyverse@gmail.com"}, diff --git a/tridiax/__version__.py b/tridiax/__version__.py index e1d60bb..bd4d4e7 100644 --- a/tridiax/__version__.py +++ b/tridiax/__version__.py @@ -1,6 +1,6 @@ # This file is part of tridiax, a toolkit for solving tridiagonal systems. tridiax is # licensed under the Apache License Version 2.0, see -VERSION = (0, 2, 0) +VERSION = (0, 2, 1) __version__ = ".".join(map(str, VERSION))