Skip to content

Commit 355f161

Browse files
authored
Merge pull request #854 from c-bata/bump-to-v0.15.1
Bump the version up to `v0.15.1`
2 parents 16ed3e1 + 4edc707 commit 355f161

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/github-release.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,13 @@ jobs:
1515
- name: Setup Node
1616
uses: actions/setup-node@v2
1717
with:
18-
node-version: '16'
19-
- run: npm install
20-
- run: npm run build:prd
18+
node-version: '20'
19+
20+
- name: Build bundle.js
21+
working-directory: optuna_dashboard
22+
run: |
23+
npm install
24+
npm run build:prd
2125
2226
- name: Set up Python
2327
uses: actions/setup-python@v4

.github/workflows/pypi-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Node
1818
uses: actions/setup-node@v2
1919
with:
20-
node-version: '16'
20+
node-version: '20'
2121

2222
- name: Build bundle.js
2323
working-directory: optuna_dashboard

optuna_dashboard/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
from ._preference_setting import register_preference_feedback_component # noqa
1818

1919

20-
__version__ = "0.15.0"
20+
__version__ = "0.15.1"

0 commit comments

Comments
 (0)