Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 1.28 release #2708

Merged
merged 8 commits into from
Nov 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Meep Release Notes

## Meep 1.28.0

11/9/2023

* Improved special field updates for r=0 in cylindrical coordinates ([#2538]).

* Geometric objects now have a `label` field that appears when `Simulation.plot2D` is called with `label_geometry=True` ([#2631]).

* Various improvements and minor bug fixes ([#2554], [#2599], [#2560], [#2611], [#2684], [#2695]) and additional documentation.

## Meep 1.27.0

5/25/2023
Expand Down Expand Up @@ -1177,3 +1187,11 @@ Meep 1.0.1
[#2499]: https://github.com/NanoComp/meep/issues/2499
[#2504]: https://github.com/NanoComp/meep/issues/2504
[#2518]: https://github.com/NanoComp/meep/issues/2518
[#2538]: https://github.com/NanoComp/meep/issues/2538
[#2554]: https://github.com/NanoComp/meep/issues/2554
[#2560]: https://github.com/NanoComp/meep/issues/2560
[#2599]: https://github.com/NanoComp/meep/issues/2599
[#2611]: https://github.com/NanoComp/meep/issues/2611
[#2631]: https://github.com/NanoComp/meep/issues/2631
[#2684]: https://github.com/NanoComp/meep/issues/2684
[#2695]: https://github.com/NanoComp/meep/issues/2695
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.28.0-beta)])
AC_INIT([meep],[m4_esyscmd(./version.sh 1.28.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="32:0:0" # CURRENT:REVISION:AGE
SHARED_VERSION_INFO="32:1:0" # CURRENT:REVISION:AGE

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