Skip to content

Commit 0ff0e60

Browse files
committed
Updates for 2.7.8
1 parent 2f2f081 commit 0ff0e60

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
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.7.8] - 2024-11-27
11+
1012
### Changed
1113
- `BatchData` is now a mapping and can be accessed and iterated over like a Python dictionary (`.keys()`, `.values()`, `.items()`).
1214

@@ -1393,7 +1395,8 @@ which fields are to be projected is now determined automatically based on the me
13931395
- Job and Batch classes for better simulation handling (eventually to fully replace webapi functions).
13941396
- A large number of small improvements and bug fixes.
13951397

1396-
[Unreleased]: https://github.com/flexcompute/tidy3d/compare/v2.7.7...develop
1398+
[Unreleased]: https://github.com/flexcompute/tidy3d/compare/v2.7.8...develop
1399+
[2.7.8]: https://github.com/flexcompute/tidy3d/compare/v2.7.6...v2.7.7
13971400
[2.7.7]: https://github.com/flexcompute/tidy3d/compare/v2.7.6...v2.7.7
13981401
[2.7.6]: https://github.com/flexcompute/tidy3d/compare/v2.7.5...v2.7.6
13991402
[2.7.5]: https://github.com/flexcompute/tidy3d/compare/v2.7.4...v2.7.5

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

275275
[tool.bumpversion]
276-
current_version = "2.7.7"
276+
current_version = "2.7.8"
277277
parse = """(?x)
278278
(?P<major>0|[1-9]\\d*)\\.
279279
(?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
@@ -2897,7 +2897,7 @@
28972897
"snapping_points": [],
28982898
"type": "GridSpec"
28992899
},
2900-
"version": "2.7.7",
2900+
"version": "2.7.8",
29012901
"lumped_elements": [],
29022902
"subpixel": false,
29032903
"simulation_type": "tidy3d",

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.7.7"
3+
__version__ = "2.7.8"

0 commit comments

Comments
 (0)