From bb9e717ea419af1d0a23653dfcb205994cd446ef Mon Sep 17 00:00:00 2001 From: Ardavan Oskooi Date: Thu, 25 May 2023 12:05:55 -0700 Subject: [PATCH] prepare for 1.27 release (#2534) --- NEWS.md | 16 ++++++++++++++++ configure.ac | 4 ++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index 8d6f8cebd..7e644c8fe 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,21 @@ # Meep Release Notes +## Meep 1.27.0 + +5/25/2023 + +* Support for spectral extrapolation using Padé approximants ([#2440]). + +* Support for periodic design regions of adjoint solver ([#2465], [#2518]). + +* Support for "unfiltering" a given set of design weights for adjoint optimization ([#2462]). + +* MPB is no longer a required dependency ([#2486]). + +* Bug fix for sources at $r = 0$ in cylindrical coordinates ([#2459]). + +* Additional unit tests and documentation ([#2428], [#2433], [#2452], [#2474]) and various improvements and minor bug fixes ([#2499], [#2504]). + ## Meep 1.26.0 3/9/2023 diff --git a/configure.ac b/configure.ac index 54c659993..f8dd1d720 100644 --- a/configure.ac +++ b/configure.ac @@ -1,13 +1,13 @@ # Process this file with autoconf to produce a configure script. -AC_INIT([meep],[m4_esyscmd(./version.sh 1.27.0-beta)]) +AC_INIT([meep],[m4_esyscmd(./version.sh 1.27.0)]) AC_CONFIG_SRCDIR(src/step.cpp) # Shared-library version number; indicates api compatibility, and is # not the same as the "public" version number. (Don't worry about this # except for public releases.) Note that any change to a C++ class # definition (in the .hpp file) generally breaks binary compatibility. -SHARED_VERSION_INFO="31:0:0" # CURRENT:REVISION:AGE +SHARED_VERSION_INFO="32:0:0" # CURRENT:REVISION:AGE AM_INIT_AUTOMAKE([foreign color-tests parallel-tests silent-rules 1.11]) AM_SILENT_RULES(yes)