Skip to content
Open
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
12 changes: 12 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Libctl Release Notes

## libctl 4.7.0

5/12/2026

* New mesh geometry object (#74).

* Bug fixes for thread safety (#75, #81).

* Support for multithreading via configure flag `--enable-openmp` (#79).

* CI workflow via Github Actions (#85).

## libctl 4.6.0

4/16/2026
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Process this file with autoconf to produce a configure script.
AC_INIT([libctl],[4.6.0],[stevenj@alum.mit.edu])
AC_INIT([libctl],[4.7.0],[stevenj@alum.mit.edu])
AC_CONFIG_SRCDIR([src/ctl.c])
AC_CONFIG_HEADERS([config.h src/ctl.h])
AC_CONFIG_MACRO_DIR([m4])
Expand All @@ -8,7 +8,7 @@ AM_MAINTAINER_MODE
# 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.)
SHARED_VERSION_INFO="10:2:3" # CURRENT:REVISION:AGE
SHARED_VERSION_INFO="10:2:4" # CURRENT:REVISION:AGE

AM_INIT_AUTOMAKE([foreign])
AC_SUBST(SHARED_VERSION_INFO)
Expand Down
Loading