Skip to content

Commit

Permalink
Updates for 2.7.8
Browse files Browse the repository at this point in the history
  • Loading branch information
momchil-flex committed Nov 27, 2024
1 parent 2f2f081 commit 0ff0e60
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.7.8] - 2024-11-27

### Changed
- `BatchData` is now a mapping and can be accessed and iterated over like a Python dictionary (`.keys()`, `.values()`, `.items()`).

Expand Down Expand Up @@ -1393,7 +1395,8 @@ 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.7...develop
[Unreleased]: https://github.com/flexcompute/tidy3d/compare/v2.7.8...develop
[2.7.8]: https://github.com/flexcompute/tidy3d/compare/v2.7.6...v2.7.7
[2.7.7]: https://github.com/flexcompute/tidy3d/compare/v2.7.6...v2.7.7
[2.7.6]: https://github.com/flexcompute/tidy3d/compare/v2.7.5...v2.7.6
[2.7.5]: https://github.com/flexcompute/tidy3d/compare/v2.7.4...v2.7.5
Expand Down
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.7"
version = "2.7.8"
description = "A fast FDTD solver"
authors = ["Tyler Hughes <[email protected]>"]
license = "LGPLv2+"
Expand Down Expand Up @@ -273,7 +273,7 @@ testpaths = ["tidy3d", "tests", "docs"]
python_files = "*.py"

[tool.bumpversion]
current_version = "2.7.7"
current_version = "2.7.8"
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.
2 changes: 1 addition & 1 deletion tests/sims/simulation_sample.json
Original file line number Diff line number Diff line change
Expand Up @@ -2897,7 +2897,7 @@
"snapping_points": [],
"type": "GridSpec"
},
"version": "2.7.7",
"version": "2.7.8",
"lumped_elements": [],
"subpixel": false,
"simulation_type": "tidy3d",
Expand Down
4 changes: 2 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.7"
__version__ = "2.7.8"

0 comments on commit 0ff0e60

Please sign in to comment.