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.29 release #2843

Merged
merged 2 commits into from
May 30, 2024
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
17 changes: 17 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Meep Release Notes

## Meep 1.29.0

5/30/2024

* Experimental support for broadband planewave sources at fixed angle ([#2609]).

* Support for subpixel smoothing for topology optimization ([#2741]).

Various improvements and minor bug fixes ([#2747], [#2751], [#2752], [#2767], [#2285]) and additional documentation.

## Meep 1.28.0

11/9/2023
Expand Down Expand Up @@ -1154,6 +1164,7 @@ Meep 1.0.1
[#2253]: https://github.com/NanoComp/meep/issues/2253
[#2264]: https://github.com/NanoComp/meep/issues/2264
[#2271]: https://github.com/NanoComp/meep/issues/2271
[#2285]: https://github.com/NanoComp/meep/issues/2285
[#2289]: https://github.com/NanoComp/meep/issues/2289
[#2290]: https://github.com/NanoComp/meep/issues/2290
[#2305]: https://github.com/NanoComp/meep/issues/2305
Expand Down Expand Up @@ -1191,7 +1202,13 @@ Meep 1.0.1
[#2554]: https://github.com/NanoComp/meep/issues/2554
[#2560]: https://github.com/NanoComp/meep/issues/2560
[#2599]: https://github.com/NanoComp/meep/issues/2599
[#2609]: https://github.com/NanoComp/meep/issues/2609
[#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
[#2741]: https://github.com/NanoComp/meep/issues/2741
[#2747]: https://github.com/NanoComp/meep/issues/2747
[#2751]: https://github.com/NanoComp/meep/issues/2751
[#2752]: https://github.com/NanoComp/meep/issues/2752
[#2767]: https://github.com/NanoComp/meep/issues/2767
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.29.0-beta)])
AC_INIT([meep],[m4_esyscmd(./version.sh 1.29.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:1:0" # CURRENT:REVISION:AGE
SHARED_VERSION_INFO="33:0:0" # CURRENT:REVISION:AGE
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note that BFAST broke binary compatibility so bumping the major version is correct here.


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