Skip to content

Commit

Permalink
Release Kauldron 1.0.0
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 698711014
  • Loading branch information
Conchylicultor authored and The kauldron Authors committed Nov 21, 2024
1 parent 35c9062 commit d5dedc6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ Changelog follow the https://keepachangelog.com/ standard (at least the headers)

## [Unreleased]

## [1.0.0] - 2024-11-21

* `kd.kontext.Path` now supports tensor slicing. So for example using keys like
`"interm.tensor[..., 0:10, :, -1]"` will now work as expected.
* `kd.nn.interm_property` now supports accessing any intermediates from within
Expand Down Expand Up @@ -89,10 +91,12 @@ Changelog follow the https://keepachangelog.com/ standard (at least the headers)
```
* Added: `kd.nn.ExternalModule(flax_module)` to use any external flax modules
inside Kauldron.
* **And many, many more changes...**

## [0.1.0] - 2022-01-01

* Initial release

[Unreleased]: https://github.com/google-research/kauldron/compare/v0.1.0...HEAD
[Unreleased]: https://github.com/google-research/kauldron/compare/v1.0.0...HEAD
[1.0.0]: https://github.com/google-research/kauldron/releases/tag/v1.0.0
[0.1.0]: https://github.com/google-research/kauldron/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion kauldron/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

# A new PyPI release will be pushed everytime `__version__` is increased
# When changing this, also update the CHANGELOG.md
__version__ = '0.1.0'
__version__ = '1.0.0'


def __getattr__(name: str): # pylint: disable=invalid-name
Expand Down

0 comments on commit d5dedc6

Please sign in to comment.