Skip to content

Commit

Permalink
release v1.7 (#431)
Browse files Browse the repository at this point in the history
* draft release

* fix doc
  • Loading branch information
lanpa committed May 20, 2019
1 parent b73e5ae commit 4601dc9
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
8 changes: 8 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`

Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tensorboardX/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 4601dc9

Please sign in to comment.