Skip to content

Commit

Permalink
Bump version to 1.32 and add final changes to changelog.
Browse files Browse the repository at this point in the history
This also adds an __init__ to the protos directory to make bazel pick it up.

PiperOrigin-RevId: 243257844
  • Loading branch information
diegolascasas committed Apr 12, 2019
1 parent 1ff44fd commit 00612ca
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
# Sonnet Changelog

## Version 1.32 - Tuesday, 9. April 2019
## Version 1.32 - Friday, 12. April 2019
* Documentation updates.
* Tiny shakespeare data is now compressed.
* `setup.py` now uses environment variables for GPU builds.
* Removed unused `wrap_rnn_cell_class` decorator from `rnn_core`.
* Add deprecation warning for layer norm in `ConvLSTM`.
* Modules now support named outputs.
* Switch to using Python3 as default.



## Version 1.31 - Tuesday, 12. March 2019
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
# This version string is semver compatible, but incompatible with pip.
# For pip, we will remove all '-' characters from this string, and use the
# result for pip.
_VERSION = '1.31'
_VERSION = '1.32'

# Use the SONNET_GPU env var to configure GPU deps.
with_gpu = os.environ.get('SONNET_GPU', '0').lower() not in ('0', 'false', 'no')
Expand Down
2 changes: 1 addition & 1 deletion sonnet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,5 +170,5 @@ def _ensure_dependency_available_at_version(package_name, min_version):
from sonnet.python.ops.initializers import restore_initializer


__version__ = '1.31'
__version__ = '1.32'

19 changes: 19 additions & 0 deletions sonnet/protos/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Copyright 2017 The Sonnet Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ============================================================================

"""Sonnet Protobuf modules."""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

0 comments on commit 00612ca

Please sign in to comment.