diff --git a/CHANGELOG.md b/CHANGELOG.md index 933ee5a039..a442a78860 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,13 +9,24 @@ vNext - - - +- +- +- +- +- +- +- +- + +0.4.1 +----- + +New features: +- Added locally-connected (unshared CNN) layer `flax.linen.ConvLocal`. - Improved seq2seq example: Factored our model and input pipeline code. - Added Optax update guide and deprecated `flax.optim`. - Added `sep` argument to `flax.traverse_util.flatten_dict()`. - Implemented Sequential module, in `flax.linen.combinators`. -- -- Added locally-connected (unshared CNN) layer `flax.linen.ConvLocal`. -- 0.4.0 ------ diff --git a/README.md b/README.md index e1a561faa5..cf9c9f8a48 100644 --- a/README.md +++ b/README.md @@ -186,7 +186,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.4.0}, + version = {0.4.1}, year = {2020}, } ``` diff --git a/flax/version.py b/flax/version.py index 7078ae4833..6c5e36c273 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.4.0" +__version__ = "0.4.1"