From 4601dc9afab015b80178c3ed22313cffc1fc5b40 Mon Sep 17 00:00:00 2001 From: Tzu-Wei Huang Date: Mon, 20 May 2019 08:26:25 +0800 Subject: [PATCH] release v1.7 (#431) * draft release * fix doc --- HISTORY.rst | 8 ++++++++ README.md | 4 ++-- setup.py | 5 ++--- tensorboardX/__init__.py | 2 +- 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 5ad23f92..3b01151b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,5 +1,13 @@ History ======= +1.7 (2019-05-19) +----------------- +* Able to write to S3 +* Fixed raw histogram issue that nothing is shown in TensorBoard +* Users can use various image/video dimension permutation by passing 'dataformats' parameter. +* You can bybass the writer by passing write_to_disk=True to SummaryWriter + + 1.6 (2019-01-02) ----------------- * Many graph related bug is fixed in this version. diff --git a/README.md b/README.md index ad8e1544..4ca347f7 100644 --- a/README.md +++ b/README.md @@ -11,13 +11,13 @@ Write TensorBoard events with simple function call. * Support `scalar`, `image`, `figure`, `histogram`, `audio`, `text`, `graph`, `onnx_graph`, `embedding`, `pr_curve` and `video` summaries. -* requirement for `demo_graph.py` is tensorboardX>=1.2 and pytorch>=0.4 +* requirement for `demo_graph.py` is tensorboardX>=1.6 and pytorch>=1.1 * [FAQ](https://github.com/lanpa/tensorboardX/wiki) ## Install -Tested on anaconda2 / anaconda3, with PyTorch 1.0.0 / torchvision 0.2.1 / tensorboard 1.12.0 +Tested on anaconda2 / anaconda3, with PyTorch 1.0.0 / torchvision 0.2.2 / tensorboard 1.13.0 `pip install tensorboardX` diff --git a/setup.py b/setup.py index 6974aa96..9a99fdc2 100644 --- a/setup.py +++ b/setup.py @@ -84,9 +84,8 @@ def run(self): # checklist: update History.rst readme.md -# version=version_git <--- change to sha-less version -# -# bump version number in setup.py +# version=version_git <--- change to sha-less version (in setup.py) +# __version__ = "1.x" (__init__.py) # commit # add tag # python setup.py sdist bdist_wheel --universal diff --git a/tensorboardX/__init__.py b/tensorboardX/__init__.py index e9b696b7..243cdd70 100644 --- a/tensorboardX/__init__.py +++ b/tensorboardX/__init__.py @@ -5,4 +5,4 @@ from .torchvis import TorchVis from .writer import FileWriter, SummaryWriter -__version__ = "1.6" # will be overwritten if run setup.py +__version__ = "1.7" # will be overwritten if run setup.py