Skip to content

Commit cd01799

Browse files
author
semantic-release
committed
1.5.0
Automatically generated by python-semantic-release
1 parent 73dc466 commit cd01799

5 files changed

Lines changed: 50 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,42 @@
22

33
<!-- version list -->
44

5+
## v1.5.0 (2026-05-11)
6+
7+
### Bug Fixes
8+
9+
- **fileBrowser**: Enable latest QuickView usage
10+
([`165ffd7`](https://github.com/Kitware/E3SMQuickCompare/commit/165ffd7a698f08d760682568dab570cbb6ba53b1))
11+
12+
- **icon**: Update web icon
13+
([`b96eb50`](https://github.com/Kitware/E3SMQuickCompare/commit/b96eb50f7ebda9c8fd1b321996749b961d9f64a3))
14+
15+
- **layout**: Properly bind layout toolbar
16+
([`73dc466`](https://github.com/Kitware/E3SMQuickCompare/commit/73dc466c001734f0079938f47b9f8939a10fc297))
17+
18+
- **size**: Better handling of toolbar size
19+
([`4858926`](https://github.com/Kitware/E3SMQuickCompare/commit/48589261b4bc4bbddff8d7414fea62a4639175c9))
20+
21+
- **tauri**: Update icon
22+
([`03b6b6b`](https://github.com/Kitware/E3SMQuickCompare/commit/03b6b6b3be0478a1d28410b4c69c953274a06552))
23+
24+
- **ViewManager**: Remove multi-view implementation
25+
([`5d3f61a`](https://github.com/Kitware/E3SMQuickCompare/commit/5d3f61a9325abad2d057b842a841c16c77efbac3))
26+
27+
- **ViewManager**: Use fast one by default
28+
([`7acbbd0`](https://github.com/Kitware/E3SMQuickCompare/commit/7acbbd005a8ddcaf3a03cbd172467016c5ea3aa6))
29+
30+
### Continuous Integration
31+
32+
- **mac**: Fix pyinstaller failure on turbojpeg
33+
([`0cde19f`](https://github.com/Kitware/E3SMQuickCompare/commit/0cde19f7e974e6b0d6730ac34294fe644ae686c7))
34+
35+
### Features
36+
37+
- Automatically toggle two-sim/multi-sim based on sim count
38+
([`88ed6e7`](https://github.com/Kitware/E3SMQuickCompare/commit/88ed6e74e7a3edaeeec718ba14bc840481e170ac))
39+
40+
541
## v1.4.0 (2026-04-27)
642

743
### Bug Fixes

pyproject.toml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "e3sm-compareview"
3-
version = "1.4.0"
3+
version = "1.5.0"
44
description = "An application to explore/analyze data for atmosphere component for E3SM"
55
authors = [
66
{name = "Kitware Inc."},
@@ -18,9 +18,7 @@ classifiers = [
1818
"Topic :: Software Development :: Libraries :: Application Frameworks",
1919
"Topic :: Software Development :: Libraries :: Python Modules",
2020
]
21-
2221
requires-python = ">=3.10"
23-
2422
dependencies = [
2523
"numpy<2.4",
2624
"trame>=3.12",
@@ -51,6 +49,15 @@ dev = [
5149
]
5250

5351

52+
[project.scripts]
53+
compareview = "e3sm_compareview.app:main"
54+
quickcompare = "e3sm_compareview.app:main"
55+
56+
[project.entry-points."jupyter_serverproxy_servers"]
57+
compareview = "e3sm_compareview.jupyter:setup_compareview"
58+
quickcompare = "e3sm_compareview.jupyter:setup_quickcompare"
59+
60+
5461
[build-system]
5562
requires = ["hatchling"]
5663
build-backend = "hatchling.build"
@@ -68,17 +75,11 @@ packages = [
6875
"src/e3sm_compareview",
6976
]
7077

71-
[project.scripts]
72-
compareview = "e3sm_compareview.app:main"
73-
quickcompare = "e3sm_compareview.app:main"
74-
75-
[project.entry-points."jupyter_serverproxy_servers"]
76-
compareview = "e3sm_compareview.jupyter:setup_compareview"
77-
quickcompare = "e3sm_compareview.jupyter:setup_quickcompare"
7878

7979
[tool.ruff.lint.per-file-ignores]
8080
"src/e3sm_compareview/pipeline.py" = ["F821"] # Plugin classes loaded dynamically
8181

82+
8283
[tool.semantic_release]
8384
version_toml = [
8485
"pyproject.toml:project.version",

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "app"
3-
version = "1.4.0"
3+
version = "1.5.0"
44
description = "QuickCompare: Visual Analysis for E3SM Atmosphere Data"
55
authors = ["Kitware"]
66
license = ""

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"package": {
99
"productName": "QuickCompare",
10-
"version": "1.4.0"
10+
"version": "1.5.0"
1111
},
1212
"tauri": {
1313
"allowlist": {

src/e3sm_compareview/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""CompareView: E3SM CompareView application."""
22

33
# TODO(decouple): Revisit "quickview" naming/usage in Tauri configs after refactor.
4-
__version__ = "1.4.0"
4+
__version__ = "1.5.0"
55
__author__ = "Kitware Inc."
66
__license__ = "Apache-2.0"

0 commit comments

Comments
 (0)