Skip to content

Commit 16a4d06

Browse files
committed
Version updated from v0.14.1 to v1.0.0
1 parent 0075a00 commit 16a4d06

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpversion]
2-
current_version = "v0.14.1"
2+
current_version = "v1.0.0"
33
commit = true
44
commit_args = "--no-verify"
55
tag = true

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Change log
22

3-
## Unreleased
3+
## 1.0.0 (March 17, 2025)
44
- Make some additional functions and modules private, including the `vector` module.
55
- Update docstrings to improve formatting of sphinx auto-docs.
66
- Rename args to `time_average_z_poynting_flux` from `*_fields` to `*_field` to be consistent with other functions in the `fields` module.
77
- Add a notebook that demonstrates calculation of the farfield for a dipole in vacuum.
88
- Improve detection of 1D permittivity distributions, particularly the case of complex permittivity.
99
- Add a basic notebook illustrating diffraction calculation.
10-
- Major changes to make way for FMMAX 1.0.0
10+
- API changes
1111
- Export key functions so they can directly be imported from `fmmax`, e.g. `fmmax.eigensolve_isotropic_media(...)`.
1212
- Update examples so they import `fmmax` and use exported functions, rather than importing individual modules.
1313
- Update API docs to include only the exported functions/classes/constants.

docs/notebooks/basics.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"source": [
77
"# Basics\n",
88
"\n",
9-
"In this example we will demonstrate te use of FMMAX for a basic diffraction calculation."
9+
"In this example we will demonstrate the use of FMMAX for a basic diffraction calculation."
1010
]
1111
},
1212
{

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22

33
name = "fmmax"
4-
version = "v0.14.1"
4+
version = "v1.0.0"
55
description = "Fourier modal method with Jax"
66
readme = "README.md"
77
requires-python = ">=3.10"

src/fmmax/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (c) 2025 Martin F. Schubert
22

3-
__version__ = "v0.14.1"
3+
__version__ = "v1.0.0"
44

55
# ruff: noqa: F401
66
from fmmax.basis import (

0 commit comments

Comments
 (0)