update version and changelog for pypi

This commit is contained in:
Matthew Johnson 2022-04-29 20:15:52 -07:00
parent 290c90d37a
commit 838f22553b
2 changed files with 8 additions and 8 deletions

View File

@ -8,10 +8,14 @@ Remember to align the itemized text with the first line of an item within a list
PLEASE REMEMBER TO CHANGE THE '..main' WITH AN ACTUAL TAG in GITHUB LINK.
-->
## jax 0.3.9 (Unreleased)
* [GitHub commits](https://github.com/google/jax/compare/jax-v0.3.8...main).
## jax 0.3.8 (Unreleased)
* [GitHub
commits](https://github.com/google/jax/compare/jax-v0.3.7...main).
## jaxlib 0.3.8 (Unreleased)
* [GitHub commits](https://github.com/google/jax/compare/jaxlib-v0.3.7...main).
## jax 0.3.8 (April 29 2022)
* [GitHub commits](https://github.com/google/jax/compare/jax-v0.3.7...jax-v0.3.8).
* Changes
* {func}`jax.numpy.linalg.svd` on TPUs uses a qdwh-svd solver.
* {func}`jax.numpy.linalg.cond` on TPUs now accepts complex input.
@ -68,10 +72,6 @@ PLEASE REMEMBER TO CHANGE THE '..main' WITH AN ACTUAL TAG in GITHUB LINK.
Many of the deprecated utilities will still exist in {mod}`jax._src.test_util`, but these are not
public APIs and as such may be changed or removed without notice in future releases.
## jaxlib 0.3.8 (Unreleased)
* [GitHub
commits](https://github.com/google/jax/compare/jaxlib-v0.3.7...main).
## jax 0.3.7 (April 15, 2022)
* [GitHub
commits](https://github.com/google/jax/compare/jax-v0.3.6...jax-v0.3.7).

View File

@ -15,7 +15,7 @@
def _version_as_tuple(version_str):
return tuple(int(i) for i in version_str.split(".") if i.isdigit())
__version__ = "0.3.8"
__version__ = "0.3.9"
__version_info__ = _version_as_tuple(__version__)
_minimum_jaxlib_version = "0.3.7"