Skip to content

Commit

Permalink
Version, changelog, schema, submodules for 2.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
momchil-flex committed Oct 10, 2024
1 parent ae5f203 commit d427511
Show file tree
Hide file tree
Showing 8 changed files with 39 additions and 9 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.7.5] - 2024-10-10

### Added
- `TopologyDesignRegion` is now invariant in `z` by default and supports assigning dimensions along which a design should be uniform via `TopologyDesignRegion(uniform=(bool, bool, bool))`.
- Support for arbitrary padding sizes for all padding modes in `tidy3d.plugins.autograd.functions.pad`.
Expand All @@ -19,6 +21,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Some validation fixes for design region.
- Bug in adjoint source creation that included empty sources for extraneous `FieldMonitor` objects, triggering unnecessary errors.
- Correct sign in objective function history depending on `Optimizer.maximize`.
- Fix to batch mode solver run that could create multiple copies of the same folder.
- Fixed ``ModeSolver.plot`` method when the simulation is not at the origin.

## [2.7.4] - 2024-09-25

Expand Down Expand Up @@ -1331,7 +1335,9 @@ which fields are to be projected is now determined automatically based on the me
- Job and Batch classes for better simulation handling (eventually to fully replace webapi functions).
- A large number of small improvements and bug fixes.

[Unreleased]: https://github.com/flexcompute/tidy3d/compare/v2.7.3...develop
[Unreleased]: https://github.com/flexcompute/tidy3d/compare/v2.7.5...develop
[2.7.5]: https://github.com/flexcompute/tidy3d/compare/v2.7.4...v2.7.5
[2.7.4]: https://github.com/flexcompute/tidy3d/compare/v2.7.3...v2.7.4
[2.7.3]: https://github.com/flexcompute/tidy3d/compare/v2.7.2...v2.7.3
[2.7.2]: https://github.com/flexcompute/tidy3d/compare/v2.7.1...v2.7.2
[2.7.1]: https://github.com/flexcompute/tidy3d/compare/v2.7.0...v2.7.1
Expand Down
2 changes: 1 addition & 1 deletion docs/notebooks
Submodule notebooks updated 2 files
+26 −0 README.md
+106 −40 StartHere.ipynb
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tidy3d"
version = "2.7.4"
version = "2.7.5"
description = "A fast FDTD solver"
authors = ["Tyler Hughes <[email protected]>"]
license = "LGPLv2+"
Expand Down Expand Up @@ -272,7 +272,7 @@ testpaths = ["tidy3d", "tests", "docs"]
python_files = "*.py"

[tool.bumpversion]
current_version = "2.7.4"
current_version = "2.7.5"
parse = """(?x)
(?P<major>0|[1-9]\\d*)\\.
(?P<minor>0|[1-9]\\d*)\\.
Expand Down
Binary file modified tests/sims/simulation_sample.h5
Binary file not shown.
3 changes: 2 additions & 1 deletion tests/sims/simulation_sample.json
Original file line number Diff line number Diff line change
Expand Up @@ -2825,10 +2825,11 @@
"snapping_points": [],
"type": "GridSpec"
},
"version": "2.7.4",
"version": "2.7.5",
"lumped_elements": [],
"subpixel": false,
"simulation_type": null,
"post_norm": 1.0,
"courant": 0.8,
"normalize_index": 0,
"shutoff": 0.0001,
Expand Down
27 changes: 25 additions & 2 deletions tidy3d/schema.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion tidy3d/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""DO NOT EDIT: Modified automatically with .bump2version.cfg"""

__version__ = "2.7.4"
__version__ = "2.7.5"

0 comments on commit d427511

Please sign in to comment.