Skip to content

Commit

Permalink
Merge pull request #1190 from jheek/release-0.3.3
Browse files Browse the repository at this point in the history
Release 0.3.3
  • Loading branch information
jheek authored Mar 31, 2021
2 parents 947b58b + df2f8a8 commit 174cf70
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 9 deletions.
32 changes: 25 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,28 +7,46 @@ vNext
(Add your change to a random empty line to avoid merge conflicts)
-
-
- Added custom error classes to many Linen errors. See:
https://flax.readthedocs.io/en/latest/flax.errors.html
-
-
-
-
-
-
-
- Bug Fix: Disallow modifying attributes in Modules after they are initialized.
- Adds `Module.bind` for binding variables and RNGs to an interactive Module.
-
-
-
- Add option to overwrite existing checkpoints in `save_checkpoint`.
- Raise an error when saving a checkpoint which has a smaller step than the
latest checkpoint already saved.
-
-
-
-
-
-
-
-
-


0.3.3
------

Possible breaking changes:
- Bug Fix: Disallow modifying attributes in Modules after they are initialized.
- Raise an error when saving a checkpoint which has a smaller step than the
latest checkpoint already saved.
- MultiOptimizer now rejects the case where multiple sub optimizers update the
same parameter.

Other changes:
- Added custom error classes to many Linen errors. See:
https://flax.readthedocs.io/en/latest/flax.errors.html
- Adds `Module.bind` for binding variables and RNGs to an interactive Module.
- Adds `nn.apply` and `nn.init` for transforming arbitrary functions that take a `linen.Module` as their first argument.
- Add option to overwrite existing checkpoints in `save_checkpoint`.
- Remove JAX omnistaging check for forward compatibility.
- Pathlib compatibility for checkpoint paths.
- `is_leaf` argument in `traverse_util.flatten_dict`

0.3.2
------
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,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.3.2},
version = {0.3.3},
year = {2020},
}
```
Expand Down
2 changes: 1 addition & 1 deletion flax/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.3.2"
__version__ = "0.3.3"

0 comments on commit 174cf70

Please sign in to comment.