Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
171 changes: 91 additions & 80 deletions poetry.lock

Large diffs are not rendered by default.

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.10.0"
version = "2.10.1"
description = "A fast FDTD solver"
authors = ["Tyler Hughes <tyler@flexcompute.com>"]
license = "LGPLv2+"
Expand Down Expand Up @@ -119,7 +119,7 @@ vtk = { version = ">=9.2.6", optional = true }
sphinxemoji = { version = "*", optional = true }
cma = { version = "*", optional = true }
openpyxl = { version = "*", optional = true }
tidy3d-extras = { version = "2.10.0", optional = true }
tidy3d-extras = { version = "2.10.1", optional = true }

[tool.poetry.extras]
dev = [
Expand Down
2 changes: 1 addition & 1 deletion schemas/EMESimulation.json
Original file line number Diff line number Diff line change
Expand Up @@ -13001,7 +13001,7 @@
"type": "string"
},
"version": {
"default": "2.10.0",
"default": "2.10.1",
"type": "string"
}
},
Expand Down
2 changes: 1 addition & 1 deletion schemas/HeatChargeSimulation.json
Original file line number Diff line number Diff line change
Expand Up @@ -10146,7 +10146,7 @@
"type": "string"
},
"version": {
"default": "2.10.0",
"default": "2.10.1",
"type": "string"
}
},
Expand Down
2 changes: 1 addition & 1 deletion schemas/HeatSimulation.json
Original file line number Diff line number Diff line change
Expand Up @@ -10146,7 +10146,7 @@
"type": "string"
},
"version": {
"default": "2.10.0",
"default": "2.10.1",
"type": "string"
}
},
Expand Down
2 changes: 1 addition & 1 deletion schemas/ModeSimulation.json
Original file line number Diff line number Diff line change
Expand Up @@ -12815,7 +12815,7 @@
"type": "string"
},
"version": {
"default": "2.10.0",
"default": "2.10.1",
"type": "string"
}
},
Expand Down
2 changes: 1 addition & 1 deletion schemas/Simulation.json
Original file line number Diff line number Diff line change
Expand Up @@ -17566,7 +17566,7 @@
"type": "string"
},
"version": {
"default": "2.10.0",
"default": "2.10.1",
"type": "string"
}
},
Expand Down
2 changes: 1 addition & 1 deletion schemas/TerminalComponentModeler.json
Original file line number Diff line number Diff line change
Expand Up @@ -16177,7 +16177,7 @@
"type": "string"
},
"version": {
"default": "2.10.0",
"default": "2.10.1",
"type": "string"
}
},
Expand Down
2 changes: 1 addition & 1 deletion tidy3d/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from __future__ import annotations

__version__ = "2.10.0"
__version__ = "2.10.1"
Loading