diff --git a/CITATION.cff b/CITATION.cff index 9324c1ead8..bdbf150421 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,6 +1,6 @@ cff-version: 1.2.0 title: "libCEED: Efficient Extensible Discretization" -version: 0.10.0 +version: 0.10.1 date-released: 2021-07-07 license: BSD-2-Clause message: "Please cite the following works when using this software." diff --git a/Doxyfile b/Doxyfile index 839bde80d3..8f0be2cdea 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = libCEED # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = v0.10.0 +PROJECT_NUMBER = v0.10.1 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/ceed.pc.template b/ceed.pc.template index f884794467..bd8485ed88 100644 --- a/ceed.pc.template +++ b/ceed.pc.template @@ -4,7 +4,7 @@ libdir=${prefix}/lib Name: CEED Description: Code for Efficient Extensible Discretization -Version: 0.10.0 +Version: 0.10.1 Cflags: -I${includedir} Libs: -L${libdir} -lceed Libs.private: %libs_private% diff --git a/doc/sphinx/source/releasenotes.md b/doc/sphinx/source/releasenotes.md index ec2fa884dc..9d5e6488ac 100644 --- a/doc/sphinx/source/releasenotes.md +++ b/doc/sphinx/source/releasenotes.md @@ -1,7 +1,6 @@ # Changes/Release Notes -On this page we provide a summary of the main API changes, new features and examples -for each release of libCEED. +On this page we provide a summary of the main API changes, new features and examples for each release of libCEED. (main)= @@ -9,6 +8,12 @@ for each release of libCEED. ### Interface changes +(v0-10-1)= + +## v0.10.1 (Apr 11, 2022) + +### Interface changes + - Added {c:func}`CeedQFunctionSetUserFlopsEstimate` and {c:func}`CeedOperatorGetFlopsEstimate` to facilitate estimating FLOPs in operator application. ### Bugfix diff --git a/include/ceed/ceed.h b/include/ceed/ceed.h index 5c3c85f06d..7146214124 100644 --- a/include/ceed/ceed.h +++ b/include/ceed/ceed.h @@ -241,8 +241,8 @@ CEED_EXTERN int CeedResetErrorMessage(Ceed, const char **err_msg); /// @ingroup Ceed #define CEED_VERSION_MAJOR 0 #define CEED_VERSION_MINOR 10 -#define CEED_VERSION_PATCH 0 -#define CEED_VERSION_RELEASE false +#define CEED_VERSION_PATCH 1 +#define CEED_VERSION_RELEASE true /// Compile-time check that the the current library version is at least as /// recent as the specified version. This macro is typically used in