Skip to content

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Alec Hammond committed Jan 22, 2025
2 parents bf5b4c8 + dc27a1e commit 1cea834
Show file tree
Hide file tree
Showing 28 changed files with 3,509 additions and 719 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ jobs:
- name: Upload coverage to Codecov
if: ${{ matrix.enable-mpi == false && matrix.python-version == 3.9 }}
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
files: ${{ github.workspace }}/python/coverage.xml

Expand Down
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.30.0-beta)])
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

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

0 comments on commit 1cea834

Please sign in to comment.