Skip to content

Commit f308d67

Browse files
author
semantic-release
committed
2.0.1
Automatically generated by python-semantic-release
1 parent 6f8edb5 commit f308d67

File tree

5 files changed

+56
-4
lines changed

5 files changed

+56
-4
lines changed

CHANGELOG.md

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

33
<!-- version list -->
44

5+
## v2.0.1 (2026-03-23)
6+
7+
### Bug Fixes
8+
9+
- Typo, store cached array not in array
10+
([`3ca8328`](https://github.com/Kitware/QuickView/commit/3ca8328cf16aaaf32666c791165040b096b1e054))
11+
12+
- **color**: Use BuGnYl as default
13+
([`cec7c3b`](https://github.com/Kitware/QuickView/commit/cec7c3b033c22f7d841579e983a8feac2839a374))
14+
15+
- **dataclass**: Bump version to latest
16+
([`46a656b`](https://github.com/Kitware/QuickView/commit/46a656bc8c1fd6cd7a715b3f1466c86166ba372b))
17+
18+
- **defaults**: Lock view by default
19+
([`ac4dc3e`](https://github.com/Kitware/QuickView/commit/ac4dc3e748561375a1374680a4c6e9779b9ad4b8))
20+
21+
- **defaults**: Show data slicing and animation
22+
([`8b52dbc`](https://github.com/Kitware/QuickView/commit/8b52dbc921d446206297fa3c5c929b29068dba04))
23+
24+
- **deprecation**: Use new ParaView method
25+
([`27ce971`](https://github.com/Kitware/QuickView/commit/27ce9718c240a00c85d2a57ff3d01de6cdb6a7c4))
26+
27+
- **paraview**: Bump dependency to v6+
28+
([`22b9b23`](https://github.com/Kitware/QuickView/commit/22b9b23491d21476f891bc6ac31c25c503935106))
29+
30+
- **pipeline**: Cleanup data processing
31+
([`d562eef`](https://github.com/Kitware/QuickView/commit/d562eefcc2b04b08fa2691baf9470841d8e2a721))
32+
33+
- **projection**: Update default projection to Mollweide
34+
([`8274e45`](https://github.com/Kitware/QuickView/commit/8274e45a508b7ec281d7a8b218926bb08e827bc6))
35+
36+
- **rca**: Use RemoteControlledArea instead of trame-vtK
37+
([`6f8edb5`](https://github.com/Kitware/QuickView/commit/6f8edb5c681a5337e62ec5f9a2d5a9148f4367dd))
38+
39+
- **ui**: Improve spacing in field loading
40+
([`2e19e38`](https://github.com/Kitware/QuickView/commit/2e19e3805709a0a1523a5928f6b7fe070f89cb4d))
41+
42+
- **view**: Use 2 columns by default
43+
([`22decff`](https://github.com/Kitware/QuickView/commit/22decff53acbc50d39fa35943340c521beb37975))
44+
45+
- **vtk**: Start migrating rendering to VTK
46+
([`d55b3e2`](https://github.com/Kitware/QuickView/commit/d55b3e2dd7352f1a8c02deb3a9615e076f8f5d9b))
47+
48+
- **vtk**: Use vtk for rendering
49+
([`1b2159d`](https://github.com/Kitware/QuickView/commit/1b2159d49ff011ebce48c1eb05075e518393b5c5))
50+
51+
### Code Style
52+
53+
- **pre-commit**: Apply style
54+
([`3f4cfd5`](https://github.com/Kitware/QuickView/commit/3f4cfd51fb3d0f5c004d380149ebe90b2065e68e))
55+
56+
557
## v2.0.0 (2026-03-19)
658

759
### Bug Fixes

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "e3sm-quickview"
3-
version = "2.0.0"
3+
version = "2.0.1"
44
description = "An application to explore/analyze data for atmosphere component for E3SM"
55
authors = [
66
{name = "Kitware Inc."},

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 = "2.0.0"
3+
version = "2.0.1"
44
description = "QuickView: Visual Analyis 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": "QuickView",
10-
"version": "2.0.0"
10+
"version": "2.0.1"
1111
},
1212
"tauri": {
1313
"allowlist": {

src/e3sm_quickview/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""QuickView: Visual Analysis for E3SM Atmosphere Data."""
22

3-
__version__ = "2.0.0"
3+
__version__ = "2.0.1"
44
__author__ = "Kitware Inc."
55
__license__ = "Apache-2.0"

0 commit comments

Comments
 (0)