update version and changelog for pypi

This commit is contained in:
Matthew Johnson 2020-03-21 20:57:25 -07:00
parent a669eda6ce
commit 15c8d4c2b3
2 changed files with 11 additions and 2 deletions

View File

@ -9,11 +9,20 @@ Change Log
These are the release notes for JAX.
jax 0.1.63 (unreleased)
---------------------------
jax 0.1.62 (unreleased)
jax 0.1.62 (March 21, 2020)
---------------------------
* JAX has dropped support for Python 3.5. Please upgrade to Python 3.6 or newer.
* Removed the internal function ``lax._safe_mul``, which implemented the
convention ``0. * nan == 0.``. This change means some programs when
differentiated will produce nans when they previously produced correct
values, though it ensures nans rather than silently incorrect results are
produced for other programs. See #2447 and #1052 for details.
* Added an ``all_gather`` parallel convenience function.
* More type annotations in core code.
jaxlib 0.1.42 (March 19, 2020)
------------------------------

View File

@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
__version__ = "0.1.61"
__version__ = "0.1.62"