Skip to content

Commit

Permalink
version bump to 1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengj committed Feb 19, 2020
1 parent b4b7d61 commit b18c6fb
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
26 changes: 26 additions & 0 deletions NEWS.md
@@ -1,5 +1,31 @@
# Meep Release Notes

## Meep 1.13.0

2/19/2020

* Optional parameter `omega` for `output-epsilon` and similar functions,
allowing the complex ε and μ at a given frequency to be outputted (#1112, following #919).

* `near2far` computation now supports cylindrical coordinates (#1090).

* Experimental support for slanted prisms (requires libctl 4.5)
via `sidewall_angle` parameter to prism objects (#1129).

* New `yee_grid=False` optional argument to `add_dft_fields`; by passing `True`
one can compute the fields on the original Yee grid (#1095).

* New function `meep::make_output_directory()` to make a temporary
directory (in `TMPDIR` or similar) and `meep::delete_directory(path)`
to perform recursive deletion (like `rm -rf`). These are now
used in tests to avoid writing to the source directory (#1121, #1122 and #1126).

* Jupyter notebooks now show a graphical progress bar during simulations (#1078).

* `kz-2d` option in Scheme, mirroring Python `kz_2d` (#1062).

* Various bugfixes, documentation supplements, and other minor improvements.

## Meep 1.12.0

11/12/19
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
@@ -1,12 +1,12 @@
# Process this file with autoconf to produce a configure script.
AC_INIT(meep, 1.12.0)
AC_INIT(meep, 1.13.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="17:0:0" # CURRENT:REVISION:AGE
SHARED_VERSION_INFO="18: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 b18c6fb

Please sign in to comment.