Update versions and changelog post 0.4.15 release

This commit is contained in:
Skye Wanderman-Milne 2023-08-30 15:31:01 -04:00
parent 603c879fa0
commit f71ba0a2e7
3 changed files with 8 additions and 4 deletions

View File

@ -6,7 +6,11 @@ Best viewed [here](https://jax.readthedocs.io/en/latest/changelog.html).
Remember to align the itemized text with the first line of an item within a list.
-->
## jax 0.4.15
## jax 0.4.16
## jaxlib 0.4.16
## jax 0.4.15 (Aug 30 2023)
* Changes
* Added {class}`jax.numpy.ufunc`, as well as {func}`jax.numpy.frompyfunc`, which can convert
@ -66,7 +70,7 @@ Remember to align the itemized text with the first line of an item within a list
removed. This utility did nothing useful in recent JAX releases and calls
to it can be safely removed.
## jaxlib 0.4.15
## jaxlib 0.4.15 (Aug 30 2023)
* Changes:
* Sparse CSR matrix multiplications via the experimental jax sparse APIs

View File

@ -18,7 +18,7 @@
import os
import datetime
_version = "0.4.15"
_version = "0.4.16"
if os.environ.get('JAX_RELEASE') or os.environ.get('JAXLIB_RELEASE'):
__version__ = _version

View File

@ -21,7 +21,7 @@ from setuptools import setup, find_packages
_current_jaxlib_version = '0.4.15'
# The following should be updated with each new jaxlib release.
_latest_jaxlib_version_on_pypi = '0.4.14'
_latest_jaxlib_version_on_pypi = '0.4.15'
_available_cuda11_cudnn_versions = ['86']
_default_cuda11_cudnn_version = '86'
_default_cuda12_cudnn_version = '89'