From 2ea538845ab03d25f5613d72d329e82f5f2a8470 Mon Sep 17 00:00:00 2001 From: ivyzheng Date: Fri, 9 Dec 2022 10:53:45 -0800 Subject: [PATCH] Release 0.6.3 --- CHANGELOG.md | 12 ++++++++++++ README.md | 2 +- flax/version.py | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 99c18a26..84d8fcd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,18 @@ vNext - - +0.6.3 +----- +New features: +- Flax checkpointing now uses [Orbax](https://github.com/google/orbax) for more flexiblity and features. +- Added support for python 3.10 and removed support for 3.7. + +Bug fixes: +- Fixed rng generation in DenseGeneral init. +- Improved support for Mac M1 chip. +- Bumped package versions for a bunch of examples. +- Improved many docstrings and error messages. + 0.6.2 ----- New features: diff --git a/README.md b/README.md index 59fd653f..dc7a39d7 100644 --- a/README.md +++ b/README.md @@ -191,7 +191,7 @@ To cite this repository: author = {Jonathan Heek and Anselm Levskaya and Avital Oliver and Marvin Ritter and Bertrand Rondepierre and Andreas Steiner and Marc van {Z}ee}, title = {{F}lax: A neural network library and ecosystem for {JAX}}, url = {http://github.com/google/flax}, - version = {0.6.2}, + version = {0.6.3}, year = {2020}, } ``` diff --git a/flax/version.py b/flax/version.py index 2d729410..d9f1df5a 100644 --- a/flax/version.py +++ b/flax/version.py @@ -13,5 +13,5 @@ # limitations under the License. """Current Flax version at head on Github.""" -__version__ = "0.6.2" +__version__ = "0.6.3"