Skip to content

Commit 60ab1cc

Browse files
author
Flax Authors
committed
Merge pull request #2908 from IvyZX:push
PiperOrigin-RevId: 512756138
2 parents 1519161 + fb010e9 commit 60ab1cc

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

.github/workflows/build.yml

+1
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ jobs:
114114
python3 -m venv venv
115115
venv/bin/python3 -m pip install .
116116
venv/bin/python3 -m pip install .[testing]
117+
venv/bin/python3 -m pip install tensorflow_datasets[dev]
117118
venv/bin/python3 -m pip install -r docs/requirements.txt
118119
- name: Install Flax
119120
run: |

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@ vNext
2424
-
2525
-
2626

27+
0.6.6
28+
-----
29+
- 0.6.5 was yanked so this release contains all that was in 0.6.5 as well.
30+
- Migrated regular dict to FrozenDict, currently controlled by a flag.
31+
- Refactored and separate out name relaxation policy changes.
32+
- Added RMS normalization layer.
33+
2734
0.6.5
2835
-----
2936
- Added logical partitioning helpers for using pjit with Flax.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ To cite this repository:
191191
author = {Jonathan Heek and Anselm Levskaya and Avital Oliver and Marvin Ritter and Bertrand Rondepierre and Andreas Steiner and Marc van {Z}ee},
192192
title = {{F}lax: A neural network library and ecosystem for {JAX}},
193193
url = {http://github.com/google/flax},
194-
version = {0.6.5},
194+
version = {0.6.6},
195195
year = {2023},
196196
}
197197
```

flax/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
# limitations under the License.
1414

1515
"""Current Flax version at head on Github."""
16-
__version__ = "0.6.5"
16+
__version__ = "0.6.6"
1717

0 commit comments

Comments
 (0)