From 31d1db6dd6ce5d1533c654ad0c7f3ef9eb51cc11 Mon Sep 17 00:00:00 2001 From: c-bata Date: Thu, 13 Apr 2023 14:32:01 +0900 Subject: [PATCH] Bump the version up to v0.9.1 --- CONTRIBUTING.md | 2 +- optuna_dashboard/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e5b21c4d..afcf4fed 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -119,7 +119,7 @@ $ isort . The release process(compiling TypeScript files, packaging Python distributions and uploading to PyPI) is fully automated by GitHub Actions. -1. Replace `optuna_dashboard.version.__version__` to the next version (e.g. 0.8.0). +1. Replace `optuna_dashboard.__version__` to the next version (e.g. 0.8.0). 2. Create a git tag (e.g. v0.8.0) and push it to GitHub. If succeeded, GitHub Action will build sdist/wheel packages and create a draft GitHub release. 3. Edit a GitHub release, generate release note, write highlights of this release if needed, and mark "Create [a discussion](https://github.com/optuna/optuna-dashboard/discussions/categories/announcements) for this release" checkbox. Then make it publish. GitHub Action will release the new version to PyPI. diff --git a/optuna_dashboard/__init__.py b/optuna_dashboard/__init__.py index 76a2ba41..e273992b 100644 --- a/optuna_dashboard/__init__.py +++ b/optuna_dashboard/__init__.py @@ -14,4 +14,4 @@ from ._note import get_note # noqa from ._note import save_note # noqa -__version__ = "0.9.0" +__version__ = "0.9.1"