Skip to content

Commit 8f4cecd

Browse files
author
semantic-release
committed
2.0.0
Automatically generated by python-semantic-release
1 parent 49930a1 commit 8f4cecd

File tree

5 files changed

+57
-4
lines changed

5 files changed

+57
-4
lines changed

CHANGELOG.md

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

33
<!-- version list -->
44

5+
## v2.0.0 (2026-03-19)
6+
7+
### Bug Fixes
8+
9+
- Constrain trame-dataclass version
10+
([`49930a1`](https://github.com/Kitware/QuickView/commit/49930a134f582fe88c96b26eb8e26a2382436093))
11+
12+
- EAMCenterMeridian can center on specified meridian.
13+
([`9cc2c1b`](https://github.com/Kitware/QuickView/commit/9cc2c1bb3269af2e2941b0de38e5af79f58218cc))
14+
15+
- Split EAMTransformAndExtract: EAMCenterMeridian, EAMExtract
16+
([`d7b8335`](https://github.com/Kitware/QuickView/commit/d7b8335bbc9b223d647e912dfdc0dc2aaa7b0162))
17+
18+
### Chores
19+
20+
- **docs**: Update installation guide with conda/pypi links
21+
([`8a6f3db`](https://github.com/Kitware/QuickView/commit/8a6f3db3bb49904ff5a977c8ad1a654768adf7fb))
22+
23+
### Documentation
24+
25+
- Update README.md
26+
([`f00423c`](https://github.com/Kitware/QuickView/commit/f00423c0c8ef7a15876a66bb71f7b4c678a08d36))
27+
28+
- **website**: Add nersc section
29+
([`ee160e5`](https://github.com/Kitware/QuickView/commit/ee160e5ab972eca7e22e56cf3e51bdbee9cfc3a1))
30+
31+
- **website**: Fix prettier formatting
32+
([`e0ee1bd`](https://github.com/Kitware/QuickView/commit/e0ee1bdda8c06a3a643792fe16614be4ea959576))
33+
34+
- **website**: Setup website
35+
([`d9ba41c`](https://github.com/Kitware/QuickView/commit/d9ba41cca5d0a1af66046cd2ac9a9e928b8df814))
36+
37+
- **website**: Update tips structure
38+
([`54c3d3a`](https://github.com/Kitware/QuickView/commit/54c3d3a5e63ece65d4d6ca278ee9aa7a7ef9ca4a))
39+
40+
- **website**: Update tips structure
41+
([`1fa8124`](https://github.com/Kitware/QuickView/commit/1fa81241abdca8e8015276b3125763680d48c037))
42+
43+
- **website**: Update tips structure
44+
([`dc912e1`](https://github.com/Kitware/QuickView/commit/dc912e1b3272cd069775b41ed2f2d13a259f9603))
45+
46+
### Features
47+
48+
- Add EAMExtract
49+
([`4f0fca2`](https://github.com/Kitware/QuickView/commit/4f0fca2d6df3eaeae9e9eacb095826d1c9cdd84e))
50+
51+
- Add ForceFloatPoints to EAMSliceSource
52+
([`aaa3682`](https://github.com/Kitware/QuickView/commit/aaa3682dfd7519c76c2b8e7533273be1423dd9bb))
53+
54+
- Cache output of CenterMeridian, reuse mesh and existing arrays
55+
([`88a4c49`](https://github.com/Kitware/QuickView/commit/88a4c494a514b49e59e51878e996d40586796ae8))
56+
57+
558
## v1.3.5 (2026-03-03)
659

760
### 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 = "1.3.5"
3+
version = "2.0.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 = "1.3.5"
3+
version = "2.0.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": "1.3.5"
10+
"version": "2.0.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__ = "1.3.5"
3+
__version__ = "2.0.0"
44
__author__ = "Kitware Inc."
55
__license__ = "Apache-2.0"

0 commit comments

Comments
 (0)