Skip to content

Commit d97d133

Browse files
committed
version, changelog, etc fr 2.8.3
1 parent b848f5d commit d97d133

File tree

7 files changed

+13
-9
lines changed

7 files changed

+13
-9
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [2.8.3] - 2025-04-24
11+
1012
### Added
1113
- Ability to select payment option when submitting jobs from the Python client.
1214
- Periodic repetition of EME subgrids via `num_reps` or `EMEPeriodicitySweep`.
1315
- Methods `EMEExplicitGrid.from_structures` and `EMECompositeGrid.from_structure_groups` to place EME cell boundaries at structure bounds.
1416
- 'ModeSimulation' now supports 'PermittivityMonitor'.
1517
- Classmethod `from_frequency_range` in `GaussianPulse` for generating a pulse whose amplitude in the frequency_range [fmin, fmax] is maximized, which is particularly useful for running broadband simulations.
1618
- Differentiable function `td.plugins.autograd.interpolate_spline` for 1D linear, quadratic, and cubic spline interpolation, supporting differentiation with respect to the interpolated values (`y_points`) and optional endpoint derivative constraints.
19+
- `SteadyEnergyBandMonitor` in the Charge solver.
1720

1821
### Changed
1922
- Performance enhancement for adjoint gradient calculations by optimizing field interpolation.
@@ -1589,7 +1592,8 @@ which fields are to be projected is now determined automatically based on the me
15891592
- Job and Batch classes for better simulation handling (eventually to fully replace webapi functions).
15901593
- A large number of small improvements and bug fixes.
15911594

1592-
[Unreleased]: https://github.com/flexcompute/tidy3d/compare/v2.8.2...develop
1595+
[Unreleased]: https://github.com/flexcompute/tidy3d/compare/v2.8.3...develop
1596+
[2.8.3]: https://github.com/flexcompute/tidy3d/compare/v2.8.2...v2.8.3
15931597
[2.8.2]: https://github.com/flexcompute/tidy3d/compare/v2.8.1...v2.8.2
15941598
[2.8.1]: https://github.com/flexcompute/tidy3d/compare/v2.8.0...v2.8.1
15951599
[2.8.0]: https://github.com/flexcompute/tidy3d/compare/v2.7.9...v2.8.0

docs/notebooks

Submodule notebooks updated 198 files

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

297297
[tool.bumpversion]
298-
current_version = "2.8.2"
298+
current_version = "2.8.3"
299299
parse = """(?x)
300300
(?P<major>0|[1-9]\\d*)\\.
301301
(?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
@@ -3201,7 +3201,7 @@
32013201
"layer_refinement_specs": [],
32023202
"type": "GridSpec"
32033203
},
3204-
"version": "2.8.1",
3204+
"version": "2.8.3",
32053205
"plot_length_units": "\u03bcm",
32063206
"lumped_elements": [
32073207
{

tidy3d/schema.json

Lines changed: 3 additions & 3 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.2"
3+
__version__ = "2.8.3"

0 commit comments

Comments
 (0)