Skip to content

Commit 3e7d486

Browse files
authored
bump to 1.31.0 (#3079)
1 parent 08cb5e0 commit 3e7d486

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

NEWS.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Meep Release Notes
22

3+
## Meep 1.31.0
4+
5+
8/15/2025
6+
7+
* Improved performance for near-to-far transformations in cylindrical coordinates ([#3047]).
8+
9+
* Experimental (undocumented) new parameter `greencyl_tol` for `get_farfields` and `Near2FarFields`
10+
in cylindrical coordinates ([#3064]).
11+
12+
* Experimental (undocumented) new method `complexflux()` for `dft_flux` objects, similar to `flux()`
13+
but returning the complex Poynting flux (whose imaginary part is reactive power) ([#3069]).
14+
15+
* Fix compatibility with python 3.12 ([#3028]).
16+
317
## Meep 1.30.1
418

519
5/15/2025
@@ -1251,3 +1265,7 @@ Meep 1.0.1
12511265
[#2970]: https://github.com/NanoComp/meep/issues/2970
12521266
[#2978]: https://github.com/NanoComp/meep/issues/2978
12531267
[#3010]: https://github.com/NanoComp/meep/issues/3010
1268+
[#3028]: https://github.com/NanoComp/meep/issues/3028
1269+
[#3047]: https://github.com/NanoComp/meep/issues/3047
1270+
[#3064]: https://github.com/NanoComp/meep/issues/3064
1271+
[#3069]: https://github.com/NanoComp/meep/issues/3069

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Process this file with autoconf to produce a configure script.
22

3-
AC_INIT([meep],[m4_esyscmd(./version.sh 1.31.0-beta)])
3+
AC_INIT([meep],[m4_esyscmd(./version.sh 1.31.0)])
44
AC_CONFIG_SRCDIR(src/step.cpp)
55

66
# Shared-library version number; indicates api compatibility, and is
77
# not the same as the "public" version number. (Don't worry about this
88
# except for public releases.) Note that any change to a C++ class
99
# definition (in the .hpp file) generally breaks binary compatibility.
10-
SHARED_VERSION_INFO="34:1:0" # CURRENT:REVISION:AGE
10+
SHARED_VERSION_INFO="35:0:0" # CURRENT:REVISION:AGE
1111

1212
AM_INIT_AUTOMAKE([foreign color-tests parallel-tests silent-rules 1.11])
1313
AM_SILENT_RULES(yes)

0 commit comments

Comments
 (0)