Skip to content

Commit e1ad97e

Browse files
committed
Last updates for 2.8.4
1 parent de6c2ce commit e1ad97e

File tree

9 files changed

+19
-11
lines changed

9 files changed

+19
-11
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.8.4] - 2025-05-15
11+
1012
### Added
1113
- The method `Geometry.reflected` can be used to create a reflected copy of any geometry off a plane. As for other transformations, for efficiency, `reflected` `PolySlab` directly returns an updated `PolySlab` object rather than a `Transformed` object, except when the normal of the plane of reflection has a non-zero component along the slab axis, in which case `Transformed` is still returned.
1214
- Validation check for unit error in grid spacing.
@@ -1616,7 +1618,8 @@ which fields are to be projected is now determined automatically based on the me
16161618
- Job and Batch classes for better simulation handling (eventually to fully replace webapi functions).
16171619
- A large number of small improvements and bug fixes.
16181620

1619-
[Unreleased]: https://github.com/flexcompute/tidy3d/compare/v2.8.3...develop
1621+
[Unreleased]: https://github.com/flexcompute/tidy3d/compare/v2.8.4...develop
1622+
[2.8.4]: https://github.com/flexcompute/tidy3d/compare/v2.8.3...v2.8.4
16201623
[2.8.3]: https://github.com/flexcompute/tidy3d/compare/v2.8.2...v2.8.3
16211624
[2.8.2]: https://github.com/flexcompute/tidy3d/compare/v2.8.1...v2.8.2
16221625
[2.8.1]: https://github.com/flexcompute/tidy3d/compare/v2.8.0...v2.8.1

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.8.3"
3+
version = "2.8.4"
44
description = "A fast FDTD solver"
55
authors = ["Tyler Hughes <[email protected]>"]
66
license = "LGPLv2+"
@@ -298,7 +298,7 @@ testpaths = ["tidy3d", "tests", "docs"]
298298
python_files = "*.py"
299299

300300
[tool.bumpversion]
301-
current_version = "2.8.3"
301+
current_version = "2.8.4"
302302
parse = """(?x)
303303
(?P<major>0|[1-9]\\d*)\\.
304304
(?P<minor>0|[1-9]\\d*)\\.

tests/_test_notebooks/full_test_notebooks.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,18 @@
3636
run_only = [
3737
"Autograd0Quickstart",
3838
"Autograd10YBranchLevelSet",
39-
"Autograd12LightExtractor",
39+
"BoundaryConditions",
40+
"BroadbandPlaneWaveWithConstantObliqueIncidentAngle",
41+
"ChargeSolver",
42+
"EMESolver",
43+
"FieldProjections",
4044
"HeatSolver",
45+
"ModeSolver",
4146
"ThermallyTunedRingResonator",
4247
"ThermoOpticDopedModulator",
4348
"VortexMetasurface",
44-
"ChargeSolver",
4549
"MetalHeaterPhaseShifter",
50+
"TFSF",
4651
]
4752

4853
skip = [

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
@@ -3201,7 +3201,7 @@
32013201
"layer_refinement_specs": [],
32023202
"type": "GridSpec"
32033203
},
3204-
"version": "2.8.3",
3204+
"version": "2.8.4",
32053205
"plot_length_units": "\u03bcm",
32063206
"lumped_elements": [
32073207
{

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,3 +1,3 @@
11
"""DO NOT EDIT: Modified automatically with .bump2version.cfg"""
22

3-
__version__ = "2.8.3"
3+
__version__ = "2.8.4"

0 commit comments

Comments
 (0)