Skip to content

Commit

Permalink
Sonnet version update produced on Tuesday, 21. May 2019
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 249841355
  • Loading branch information
diegolascasas committed Jun 4, 2019
1 parent 70a0a26 commit 56c917e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Sonnet Changelog

## Version 1.33 - Friday, 21 May 2019
* Documentation updates.
* Added developmental branch for Sonnet 2.
* `setup.py` is now simpler. The `dm-sonnet-gpu` package has been retired, all
functionality has been available in `dm-sonnet` for some time now.
* Use `tf_inspect` instead of `inspect` for inspecting arguments.


## Version 1.32 - Friday, 12. April 2019
* Documentation updates.
* Tiny shakespeare data is now compressed.
Expand All @@ -10,7 +18,6 @@
* Switch to using Python3 as default.



## Version 1.31 - Tuesday, 12. March 2019

* Added `custom_getter` parameter to `snt.ConvNet2DTranspose`. It now can be used when transposing an existing `ConvNet2D` or `ConvNet2DTranspose`.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from setuptools import setup
from setuptools.command.install import install as InstallCommandBase

_VERSION = '1.32'
_VERSION = '1.33'


EXTRA_PACKAGES = {
Expand Down
2 changes: 1 addition & 1 deletion sonnet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,5 +169,5 @@ def _ensure_dependency_available_at_version(package_name, min_version):
from sonnet.python.ops.initializers import restore_initializer


__version__ = '1.32'
__version__ = '1.33'

0 comments on commit 56c917e

Please sign in to comment.