Skip to content

Commit

Permalink
Prepare for 1.28 release (#2708)
Browse files Browse the repository at this point in the history
* prepare for 1.28 release

* Update NEWS.md

* Revert "Update NEWS.md"

This reverts commit 9f0cc7b.

* news for 2631

* news links

* news tweak

* news tweak: mention label_geometry=True

* shared lib major version doesn't change since header file is unchanged

---------

Co-authored-by: Steven G. Johnson <[email protected]>
  • Loading branch information
oskooi and stevengj authored Nov 9, 2023
1 parent 91ccc5b commit ab20f9c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
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

0 comments on commit ab20f9c

Please sign in to comment.