Skip to content

Commit 9a2276a

Browse files
committed
Version, changelog, schema for 2.6.3
1 parent 0fdda6d commit 9a2276a

File tree

6 files changed

+16
-8
lines changed

6 files changed

+16
-8
lines changed

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
### Added
99

1010
### Changed
11-
- Revert forbidden `"` in component names.
1211

1312
### Fixed
1413

14+
## [2.6.3] - 2024-04-02
15+
16+
### Added
17+
- Added new validators in `HeatSimulation`: no structures with dimensions of zero size, no all-Neumann boundary conditions, non-empty simulation domain.
18+
19+
### Changed
20+
- Revert forbidden `"` in component names.
21+
1522
## [2.6.2] - 2024-03-21
1623

1724
### Changed
@@ -1142,7 +1149,8 @@ which fields are to be projected is now determined automatically based on the me
11421149
- Job and Batch classes for better simulation handling (eventually to fully replace webapi functions).
11431150
- A large number of small improvements and bug fixes.
11441151

1145-
[Unreleased]: https://github.com/flexcompute/tidy3d/compare/v2.6.2...develop
1152+
[Unreleased]: https://github.com/flexcompute/tidy3d/compare/v2.6.3...develop
1153+
[2.6.3]: https://github.com/flexcompute/tidy3d/compare/v2.6.2...v2.6.3
11461154
[2.6.2]: https://github.com/flexcompute/tidy3d/compare/v2.6.1...v2.6.2
11471155
[2.6.1]: https://github.com/flexcompute/tidy3d/compare/v2.6.0...v2.6.1
11481156
[2.6.0]: https://github.com/flexcompute/tidy3d/compare/v2.5.2...v2.6.0

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "tidy3d"
3-
version = "2.6.2"
3+
version = "2.6.3"
44
description = "A fast FDTD solver"
55
authors = ["Tyler Hughes <[email protected]>"]
66
license = "LGPLv2+"
@@ -186,7 +186,7 @@ lint.select = [
186186
]
187187

188188
[tool.bumpversion]
189-
current_version = "2.6.2"
189+
current_version = "2.6.3"
190190
parse = """(?x)
191191
(?P<major>0|[1-9]\\d*)\\.
192192
(?P<minor>0|[1-9]\\d*)\\.

tests/sims/simulation_sample.h5

0 Bytes
Binary file not shown.

tests/sims/simulation_sample.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2222,7 +2222,7 @@
22222222
],
22232223
"type": "GridSpec"
22242224
},
2225-
"version": "2.6.2",
2225+
"version": "2.6.3",
22262226
"courant": 0.8,
22272227
"normalize_index": 0,
22282228
"shutoff": 0.0001,

tidy3d/schema.json

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

tidy3d/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""DO NOT EDIT: Modified automatically with .bump2version.cfg"""
2-
__version__ = "2.6.2"
2+
__version__ = "2.6.3"

0 commit comments

Comments
 (0)