Skip to content

Commit 5abb3f1

Browse files
author
semantic-release
committed
2.1.2
Automatically generated by python-semantic-release
1 parent 687ac6c commit 5abb3f1

File tree

5 files changed

+38
-4
lines changed

5 files changed

+38
-4
lines changed

CHANGELOG.md

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

33
<!-- version list -->
44

5+
## v2.1.2 (2026-04-10)
6+
7+
### Bug Fixes
8+
9+
- Allow trimming beyond mid point
10+
([`9d56424`](https://github.com/Kitware/QuickView/commit/9d56424f2eed9352b5b65550090a8cfe658b3160))
11+
12+
- Better fix for MTime() issue
13+
([`6653657`](https://github.com/Kitware/QuickView/commit/665365717d65d3045856736d777d84cbab724f21))
14+
15+
- Cache output for EAMExtract
16+
([`78f8d96`](https://github.com/Kitware/QuickView/commit/78f8d96294a15e0784d3622f5a26a07fe7ee8f88))
17+
18+
- Check self MTime (projection was modified) as well
19+
([`f0db939`](https://github.com/Kitware/QuickView/commit/f0db93989ee5ed7c68cdb6eec9fb20ee147e29c5))
20+
21+
- Fix crash when: trim_lon = 200 then trim_lon = 0
22+
([`d4cce24`](https://github.com/Kitware/QuickView/commit/d4cce24b5816e0305905466f90a07056d185a265))
23+
24+
- Fix the filter for polydata input
25+
([`3ec9870`](https://github.com/Kitware/QuickView/commit/3ec987060120029444529aa2a32e336f48ca7430))
26+
27+
- No need to do something different for latlon projection
28+
([`d479e89`](https://github.com/Kitware/QuickView/commit/d479e89f2cc1e7b96b4e8e0e78f4fa0005d57cc3))
29+
30+
- Remove vtkPVGeometryFilter as it is applied in EAMExtract
31+
([`a6857be`](https://github.com/Kitware/QuickView/commit/a6857bef265b907a224d3d667233018efc75d2a9))
32+
33+
### Documentation
34+
35+
- Update info on landing page
36+
([`687ac6c`](https://github.com/Kitware/QuickView/commit/687ac6cf07e4e80df587d42e630eefe25e1e8c7f))
37+
38+
539
## v2.1.1 (2026-04-06)
640

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

0 commit comments

Comments
 (0)