Skip to content

Commit

Permalink
prepare release and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldeistler committed Dec 5, 2024
1 parent fe602ec commit 4d17d07
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "tridiax"
version = "0.2.0"
version = "0.2.1"
description = "Solving tridiagonal systems."
authors = [
{ name = "jaxleyverse", email = "[email protected]"},
Expand Down
2 changes: 1 addition & 1 deletion tridiax/__version__.py
Original file line number Diff line number Diff line change
@@ -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 <https://www.apache.org/licenses/>

VERSION = (0, 2, 0)
VERSION = (0, 2, 1)

__version__ = ".".join(map(str, VERSION))

0 comments on commit 4d17d07

Please sign in to comment.