Skip to content

Commit

Permalink
Merge pull request #15978 from skye:version
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 531321316
  • Loading branch information
jax authors committed May 11, 2023
2 parents 6e81814 + 82bbeef commit 21fc6e0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ Remember to align the itemized text with the first line of an item within a list

## jaxlib 0.4.10

* Changes
* Fixed `'apple-m1' is not a recognized processor for this target (ignoring
processor)` issue that prevented previous release from running on Mac M1.

## jax 0.4.9 (May 9, 2023)

* Changes
Expand Down
6 changes: 3 additions & 3 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# and update the sha256 with the result.
http_archive(
name = "xla",
sha256 = "3d9ca2c8cd81b820b63052409867a81102c42bb1382b971f6402bad21288df52",
strip_prefix = "xla-dad64948516e3672b3e2518945831a70b5e90b81",
sha256 = "14bbdd796211e45a7a3148bd5e43523da4556ff19cf5461588b79650b55b9302",
strip_prefix = "xla-c1e4a16e77a7ba2000003ccade3ffba3749ada35",
urls = [
"https://github.com/openxla/xla/archive/dad64948516e3672b3e2518945831a70b5e90b81.tar.gz",
"https://github.com/openxla/xla/archive/c1e4a16e77a7ba2000003ccade3ffba3749ada35.tar.gz",
],
)

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@

from setuptools import setup, find_packages

_current_jaxlib_version = '0.4.9'
_current_jaxlib_version = '0.4.10'
# The following should be updated with each new jaxlib release.
_latest_jaxlib_version_on_pypi = '0.4.9'
_available_cuda11_cudnn_versions = ['82', '86']
_default_cuda11_cudnn_version = '86'
_default_cuda12_cudnn_version = '88'
_libtpu_version = '0.1.dev20230509'
_libtpu_version = '0.1.dev20230511'

_dct = {}
with open('jax/version.py', encoding='utf-8') as f:
Expand Down

0 comments on commit 21fc6e0

Please sign in to comment.