Skip to content

Commit a1fb740

Browse files
authored
Prepare for 1.29 release (#2843)
* prepare for 1.29 release * experimental support for BFAST
1 parent bba8d5b commit a1fb740

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

NEWS.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Meep Release Notes
22

3+
## Meep 1.29.0
4+
5+
5/30/2024
6+
7+
* Experimental support for broadband planewave sources at fixed angle ([#2609]).
8+
9+
* Support for subpixel smoothing for topology optimization ([#2741]).
10+
11+
Various improvements and minor bug fixes ([#2747], [#2751], [#2752], [#2767], [#2285]) and additional documentation.
12+
313
## Meep 1.28.0
414

515
11/9/2023
@@ -1154,6 +1164,7 @@ Meep 1.0.1
11541164
[#2253]: https://github.com/NanoComp/meep/issues/2253
11551165
[#2264]: https://github.com/NanoComp/meep/issues/2264
11561166
[#2271]: https://github.com/NanoComp/meep/issues/2271
1167+
[#2285]: https://github.com/NanoComp/meep/issues/2285
11571168
[#2289]: https://github.com/NanoComp/meep/issues/2289
11581169
[#2290]: https://github.com/NanoComp/meep/issues/2290
11591170
[#2305]: https://github.com/NanoComp/meep/issues/2305
@@ -1191,7 +1202,13 @@ Meep 1.0.1
11911202
[#2554]: https://github.com/NanoComp/meep/issues/2554
11921203
[#2560]: https://github.com/NanoComp/meep/issues/2560
11931204
[#2599]: https://github.com/NanoComp/meep/issues/2599
1205+
[#2609]: https://github.com/NanoComp/meep/issues/2609
11941206
[#2611]: https://github.com/NanoComp/meep/issues/2611
11951207
[#2631]: https://github.com/NanoComp/meep/issues/2631
11961208
[#2684]: https://github.com/NanoComp/meep/issues/2684
11971209
[#2695]: https://github.com/NanoComp/meep/issues/2695
1210+
[#2741]: https://github.com/NanoComp/meep/issues/2741
1211+
[#2747]: https://github.com/NanoComp/meep/issues/2747
1212+
[#2751]: https://github.com/NanoComp/meep/issues/2751
1213+
[#2752]: https://github.com/NanoComp/meep/issues/2752
1214+
[#2767]: https://github.com/NanoComp/meep/issues/2767

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Process this file with autoconf to produce a configure script.
22

3-
AC_INIT([meep],[m4_esyscmd(./version.sh 1.29.0-beta)])
3+
AC_INIT([meep],[m4_esyscmd(./version.sh 1.29.0)])
44
AC_CONFIG_SRCDIR(src/step.cpp)
55

66
# Shared-library version number; indicates api compatibility, and is
77
# not the same as the "public" version number. (Don't worry about this
88
# except for public releases.) Note that any change to a C++ class
99
# definition (in the .hpp file) generally breaks binary compatibility.
10-
SHARED_VERSION_INFO="32:1:0" # CURRENT:REVISION:AGE
10+
SHARED_VERSION_INFO="33:0:0" # CURRENT:REVISION:AGE
1111

1212
AM_INIT_AUTOMAKE([foreign color-tests parallel-tests silent-rules 1.11])
1313
AM_SILENT_RULES(yes)

0 commit comments

Comments
 (0)