Bump jax version and CHANGELOG to 0.2.18

This commit is contained in:
Skye Wanderman-Milne 2021-07-21 11:56:24 -07:00
parent 8662c5f660
commit a7916f1428
2 changed files with 20 additions and 17 deletions

View File

@ -8,8 +8,25 @@ 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.2.18 (unreleased)
* [GitHub commits](https://github.com/google/jax/compare/jax-v0.2.17...main).
## jax 0.2.19 (unreleased)
* [GitHub commits](https://github.com/google/jax/compare/jax-v0.2.18...main).
## jaxlib 0.1.70 (unreleased)
* Breaking changes:
* Support for Python 3.6 has been dropped, per the
[deprecation policy](https://jax.readthedocs.io/en/latest/deprecation.html).
Please upgrade to a supported Python version.
* Breaking changes:
* The host_callback mechnism now uses one thread per local device for
making the calls to the Python callbacks. Previously there was a single
thread for all devices. This means that the callbacks may now be called
interleaved. The callbacks corresponding to one device will still be
called in sequence.
## jax 0.2.18 (July 21 2021)
* [GitHub commits](https://github.com/google/jax/compare/jax-v0.2.17...jax-v0.2.18).
* Breaking changes:
* Support for Python 3.6 has been dropped, per the
@ -28,20 +45,6 @@ PLEASE REMEMBER TO CHANGE THE '..main' WITH AN ACTUAL TAG in GITHUB LINK.
({jax-issue}`#7196`)
## jaxlib 0.1.70 (unreleased)
* Breaking changes:
* Support for Python 3.6 has been dropped, per the
[deprecation policy](https://jax.readthedocs.io/en/latest/deprecation.html).
Please upgrade to a supported Python version.
* Breaking changes:
* The host_callback mechnism now uses one thread per local device for
making the calls to the Python callbacks. Previously there was a single
thread for all devices. This means that the callbacks may now be called
interleaved. The callbacks corresponding to one device will still be
called in sequence.
## jaxlib 0.1.69 (July 9 2021)
* Fix bugs in TFRT CPU backend that results in incorrect results.

View File

@ -12,5 +12,5 @@
# See the License for the specific language governing permissions and
# limitations under the License.
__version__ = "0.2.17"
__version__ = "0.2.18"
_minimum_jaxlib_version = "0.1.69"