From 59ca650f4f20ade5fcf161b5e61cb456e3791250 Mon Sep 17 00:00:00 2001 From: c-bata Date: Fri, 29 Mar 2024 15:20:41 +0900 Subject: [PATCH 1/2] Bump the version up to v0.15.1 --- optuna_dashboard/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/optuna_dashboard/__init__.py b/optuna_dashboard/__init__.py index beed5720d..1bc74e952 100644 --- a/optuna_dashboard/__init__.py +++ b/optuna_dashboard/__init__.py @@ -17,4 +17,4 @@ from ._preference_setting import register_preference_feedback_component # noqa -__version__ = "0.15.0" +__version__ = "0.15.1" From 4edc707cd84456380457ead66c7cefbb234b691c Mon Sep 17 00:00:00 2001 From: c-bata Date: Fri, 29 Mar 2024 15:23:27 +0900 Subject: [PATCH 2/2] Update release actions --- .github/workflows/github-release.yml | 10 +++++++--- .github/workflows/pypi-publish.yml | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/github-release.yml b/.github/workflows/github-release.yml index 84d0b83f5..f183fe4e6 100644 --- a/.github/workflows/github-release.yml +++ b/.github/workflows/github-release.yml @@ -15,9 +15,13 @@ jobs: - name: Setup Node uses: actions/setup-node@v2 with: - node-version: '16' - - run: npm install - - run: npm run build:prd + node-version: '20' + + - name: Build bundle.js + working-directory: optuna_dashboard + run: | + npm install + npm run build:prd - name: Set up Python uses: actions/setup-python@v4 diff --git a/.github/workflows/pypi-publish.yml b/.github/workflows/pypi-publish.yml index d2ddf54de..2b0670bd8 100644 --- a/.github/workflows/pypi-publish.yml +++ b/.github/workflows/pypi-publish.yml @@ -17,7 +17,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v2 with: - node-version: '16' + node-version: '20' - name: Build bundle.js working-directory: optuna_dashboard