diff --git a/HISTORY.rst b/HISTORY.rst index fbb2b007..3be87853 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,5 +1,13 @@ History ======= +2.0 (2019-12-31) +----------------- +* Now you can tag Hparams trials with custom name instead of the default epoch time +* Fixed a bug that add_hparams are rendered incorrectly with non-string values +* Supports logging to Amazon S3 or Google Cloud Storage +* Bug fixes and error message for add_embedding function +* Draw openvino format with add_openvino_graph + 1.9 (2019-10-04) ----------------- * Use new JIT backend for pytorch. This works better with pytorch 1.2 and 1.3 diff --git a/README.md b/README.md index c6aaeb8f..d5ceec9d 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Write TensorBoard events with simple function call. ## Install -Tested on anaconda2 / anaconda3, with PyTorch 1.3.0 / torchvision 0.4.1 / tensorboard 1.13.0 +Tested on anaconda2 / anaconda3, with PyTorch 1.3.1 / torchvision 0.4.1 / tensorboard 2.0.0 `pip install tensorboardX` diff --git a/setup.py b/setup.py index c8f35e18..190fadaf 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ def run(self): history = history_file.read() preparing_PyPI_package = False -version_git = version = '1.9' +version_git = version = '2.0' if not preparing_PyPI_package: if os.path.exists('.git'): @@ -88,10 +88,11 @@ def run(self): # checklist: update History.rst readme.md -# change preparing_PyPI_package to True, and version_git +# change preparing_PyPI_package to True, and update version_git to new version # remove __version__ = "1.old" in __init__.py, update the version number # python setup.py sdist bdist_wheel --universal # check the generated tar.gz file +# git add [files] # git commit -m 'prepare for release' # add tag # twine upload dist/* diff --git a/tensorboardX/__init__.py b/tensorboardX/__init__.py index 69f71eb8..4c7f94af 100644 --- a/tensorboardX/__init__.py +++ b/tensorboardX/__init__.py @@ -5,4 +5,4 @@ from .torchvis import TorchVis from .writer import FileWriter, SummaryWriter -__version__ = "1.9" # will be overwritten if run setup.py +__version__ = "2.0" # will be overwritten if run setup.py