From bd24aa9d05b30e9ad2153750187bdaf72897af15 Mon Sep 17 00:00:00 2001 From: Nick Felt Date: Tue, 24 Jul 2018 12:30:00 -0700 Subject: [PATCH] Release 1.10.0 (#1308) --- .travis.yml | 2 +- RELEASE.md | 20 ++++++++++++++++++++ tensorboard/version.py | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index f62be239995..04ebc2f489d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,7 @@ branches: - /^\d+\.\d+(\.\d+)?(-\S*)?$/ env: - - BAZEL=0.13.0 TF=NIGHTLY + - BAZEL=0.13.0 TF=1.10.0rc0 cache: directories: diff --git a/RELEASE.md b/RELEASE.md index 206fa241af0..46ecbd15a58 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,3 +1,23 @@ +# Release 1.10.0 + +The 1.10 minor series tracks TensorFlow 1.10. + +## Changes +- New logic for loading/launching TensorBoard (PR #1240) + - Plugin loading now uses new TBLoader API + - Argument parsing now uses argparse + - New `tb.program.launch()` API to launch TB from within Python +- Sidebars adjusted to be consistent across plugins (PR #1296) +- tb.summary.image() param order fixed to h, w (PR #1262) - thanks @ppwwyyxx +- New TPU profile dashboard progress bar for loading tools (PR #1286) + +## Bug fixes +- #1260 - Fix missing pie chart in TPU profile input pipeline analyzer +- #1280 - Fix TPU profile memory viewer issue with XLA compatibility +- #1287 - Fix dangling UI interaction layer issue in vz-line-chart +- #1294 - Fix custom scalar dashboard to de-duplicate charts - thanks @lgeiger + + # Release 1.9.0 The 1.9 minor series tracks TensorFlow 1.9. diff --git a/tensorboard/version.py b/tensorboard/version.py index 37498a0ad8b..8bbef02aa16 100644 --- a/tensorboard/version.py +++ b/tensorboard/version.py @@ -15,4 +15,4 @@ """Contains the version string.""" -VERSION = '1.10.0a0' +VERSION = '1.10.0'