From 572a6894b5d8192b1289b2433b0a83fd787218c9 Mon Sep 17 00:00:00 2001 From: Nick Felt Date: Mon, 5 Feb 2018 15:51:01 -0800 Subject: [PATCH] TensorBoard 1.5.1 --- RELEASE.md | 25 +++++++++++++++++++++++++ tensorboard/pip_package/README.rst | 9 +++++++++ tensorboard/version.py | 2 +- 3 files changed, 35 insertions(+), 1 deletion(-) diff --git a/RELEASE.md b/RELEASE.md index 8f996d9f2a..b26c688219 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,3 +1,28 @@ +# Release 1.5.1 + +NOTICE: TensorBoard 1.6.0+ will move to the `tensorboard` package name on PyPI, +instead of using `tensorflow-tensorboard`. Only bugfix updates on 1.5.x will be +applied to the old package name. To upgrade to TensorBoard 1.6.0+ please *first* +`pip uninstall tensorflow-tensorboard` before doing `pip install tensorboard`. + +The 1.5 minor series tracks TensorFlow 1.5. + +## Bug fixes + +- #554 - line charts no longer "shrink" after run changes on other tabs +- #889 - fix xComponentsCreationMethod default in vz-line-chart +- #898 - fixed offset of checkbox label in projector dashboard - thanks @marcj +- #903 - disabled margin plot smoothing to avoid line going out of bounds +- #916 - make `futures` dependency py2-only to avoid install failures +- #924 - fixed graph dashboard bug causing blank PNG download and minimap +- #926 - made projector plugin API available in pip package + +## Documentation updates + +- Custom scalars documentation now documents margin plots feature (#878) +- FAQ updated to describe custom scalars plugin use cases + + # Release 1.5.0 The 1.5 minor series tracks TensorFlow 1.5. diff --git a/tensorboard/pip_package/README.rst b/tensorboard/pip_package/README.rst index 4b419b005e..bed1186a43 100644 --- a/tensorboard/pip_package/README.rst +++ b/tensorboard/pip_package/README.rst @@ -1,2 +1,11 @@ +**NOTICE**: This PyPI entry has been deprecated in favor of the ``tensorboard`` +name found at https://pypi.python.org/pypi/tensorboard for TensorBoard 1.6.0+. +Only bugfix updates on 1.5.x will be applied to this old package name. + +To upgrade past the version shown on this page, please ensure that you *first* +``pip uninstall tensorflow-tensorboard`` and then ``pip install tensorboard``. + +------------ + TensorBoard is a suite of web applications for inspecting and understanding your TensorFlow runs and graphs. diff --git a/tensorboard/version.py b/tensorboard/version.py index f77b491f6f..e80beb614e 100644 --- a/tensorboard/version.py +++ b/tensorboard/version.py @@ -15,4 +15,4 @@ """Contains the version string.""" -VERSION = '1.5.0' +VERSION = '1.5.1'