Skip to content

Commit f51d524

Browse files
author
semantic-release
committed
2.1.0
Automatically generated by python-semantic-release
1 parent e788b7f commit f51d524

File tree

5 files changed

+53
-4
lines changed

5 files changed

+53
-4
lines changed

CHANGELOG.md

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

33
<!-- version list -->
44

5+
## v2.1.0 (2026-03-31)
6+
7+
### Bug Fixes
8+
9+
- Compare points and cell arrays modification time
10+
([`db50c2b`](https://github.com/Kitware/QuickView/commit/db50c2b6263c7a29d09ac6a75890fbe370c0354b))
11+
12+
- Fix the non-projection side
13+
([`8f9192d`](https://github.com/Kitware/QuickView/commit/8f9192dd00036f72a8bf99c863b2cd046220cc0f))
14+
15+
- Keep a reference to cached_output so it is not deleted
16+
([`1847c35`](https://github.com/Kitware/QuickView/commit/1847c35db9e974eb932c7f7d85fb0970a2dfc331))
17+
18+
- Remove Register/Unregister: use python references instead
19+
([`8eff1cd`](https://github.com/Kitware/QuickView/commit/8eff1cdc44179777dad8cb76fa565514d232c49c))
20+
21+
- Use pythonic interface
22+
([`28ccaba`](https://github.com/Kitware/QuickView/commit/28ccaba63042188986cd4bb999934536a559afd0))
23+
24+
- Use the Trim instead of Range interface for data
25+
([`8339a8f`](https://github.com/Kitware/QuickView/commit/8339a8fec8cd01327f0f75fb9ec8f7825884a682))
26+
27+
- **crop**: Use PVGeometryFilter
28+
([`9c93c21`](https://github.com/Kitware/QuickView/commit/9c93c2135ebd2faaeeb0f5fdff75e4225958e85f))
29+
30+
- **loading**: Provide instant feedback and report loading time
31+
([`e38e4dd`](https://github.com/Kitware/QuickView/commit/e38e4dd9580739d65c3ff0bb6afa532d780f9ebf))
32+
33+
- **proj**: Ensure projection to properly update
34+
([`e788b7f`](https://github.com/Kitware/QuickView/commit/e788b7f85c5cba3cbdce63f6391b69902936d470))
35+
36+
- **view**: Use a single vtkRenderView
37+
([`4da6cab`](https://github.com/Kitware/QuickView/commit/4da6cab3233b5329df4b601c04098bd50d0b8050))
38+
39+
### Features
40+
41+
- Add caching to EAMProject
42+
([`06a97e4`](https://github.com/Kitware/QuickView/commit/06a97e49739cf42301351a8109a8972b996ddb4e))
43+
44+
- Cache cell_centers and ghosts in EAMExtract
45+
([`91599b0`](https://github.com/Kitware/QuickView/commit/91599b002ebecea3f69a4239e5d63bd930bd5cc5))
46+
47+
- EAMExtract with any lon range. Use hidden cells for extract.
48+
([`6570c33`](https://github.com/Kitware/QuickView/commit/6570c33a45fac348a8d4286d979fbd6c0f0cd3a7))
49+
50+
- **fast**: Add a fast option to choose rendering pipeline
51+
([`d301496`](https://github.com/Kitware/QuickView/commit/d30149618803032438aa885a967303fc56f48dc8))
52+
53+
554
## v2.0.2 (2026-03-24)
655

756
### 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.2"
3+
version = "2.1.0"
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.2"
3+
version = "2.1.0"
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.2"
10+
"version": "2.1.0"
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.2"
3+
__version__ = "2.1.0"
44
__author__ = "Kitware Inc."
55
__license__ = "Apache-2.0"

0 commit comments

Comments
 (0)