Skip to content

Commit

Permalink
Merge pull request #934 from CEED/jeremy/0-10-1
Browse files Browse the repository at this point in the history
Prepare for v0.10.1 patch
  • Loading branch information
jeremylt committed Apr 11, 2022
2 parents cebdb6b + f374d6a commit 74532b2
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion 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."
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ceed.pc.template
Expand Up @@ -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%
9 changes: 7 additions & 2 deletions doc/sphinx/source/releasenotes.md
@@ -1,14 +1,19 @@
# 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)=

## Current `main` branch

### 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
Expand Down
4 changes: 2 additions & 2 deletions include/ceed/ceed.h
Expand Up @@ -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
Expand Down

0 comments on commit 74532b2

Please sign in to comment.