Skip to content

Commit

Permalink
meep 1.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengj committed Oct 7, 2020
1 parent 39a8f67 commit ed44009
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
20 changes: 19 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
# Meep Release Notes

## Meep 1.16.0-alpha
## Meep 1.16.0

10/6/2020

* Gaussian beam source feature (#1303 and #1310).

* New API for specifying planewave diffraction orders for eigenmode sources
and coefficients (#1316).

* More accurate gradients in adjoint code (#1285).

* Simpler Python API for outputting ε or μ at a given frequency (#1374).

* `--with-libctl-dir` option of `configure` now accepts simply the installation `prefix` in addition to `prefix/share/libctl` (#1286).

* Less verbose mode-solver output from MPB (#1302, #1388), and new
`meep.verbosity` option in Python (#1349).

* Bug fix for single-point DFT monitor (#1333).

## Meep 1.15.0

Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Process this file with autoconf to produce a configure script.

AC_INIT(meep, m4_esyscmd([./version.sh 1.16.0 alpha]))
AC_INIT(meep, m4_esyscmd([./version.sh 1.16.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="20:0:0" # CURRENT:REVISION:AGE
SHARED_VERSION_INFO="21:0:0" # CURRENT:REVISION:AGE

AM_INIT_AUTOMAKE([foreign color-tests parallel-tests silent-rules 1.11])
AM_SILENT_RULES(yes)
Expand Down

0 comments on commit ed44009

Please sign in to comment.