Skip to content

Commit 74532b2

Browse files
authored
Merge pull request #934 from CEED/jeremy/0-10-1
Prepare for v0.10.1 patch
2 parents cebdb6b + f374d6a commit 74532b2

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cff-version: 1.2.0
22
title: "libCEED: Efficient Extensible Discretization"
3-
version: 0.10.0
3+
version: 0.10.1
44
date-released: 2021-07-07
55
license: BSD-2-Clause
66
message: "Please cite the following works when using this software."

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = libCEED
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = v0.10.0
41+
PROJECT_NUMBER = v0.10.1
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

ceed.pc.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ libdir=${prefix}/lib
44

55
Name: CEED
66
Description: Code for Efficient Extensible Discretization
7-
Version: 0.10.0
7+
Version: 0.10.1
88
Cflags: -I${includedir}
99
Libs: -L${libdir} -lceed
1010
Libs.private: %libs_private%

doc/sphinx/source/releasenotes.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
# Changes/Release Notes
22

3-
On this page we provide a summary of the main API changes, new features and examples
4-
for each release of libCEED.
3+
On this page we provide a summary of the main API changes, new features and examples for each release of libCEED.
54

65
(main)=
76

87
## Current `main` branch
98

109
### Interface changes
1110

11+
(v0-10-1)=
12+
13+
## v0.10.1 (Apr 11, 2022)
14+
15+
### Interface changes
16+
1217
- Added {c:func}`CeedQFunctionSetUserFlopsEstimate` and {c:func}`CeedOperatorGetFlopsEstimate` to facilitate estimating FLOPs in operator application.
1318

1419
### Bugfix

include/ceed/ceed.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,8 @@ CEED_EXTERN int CeedResetErrorMessage(Ceed, const char **err_msg);
241241
/// @ingroup Ceed
242242
#define CEED_VERSION_MAJOR 0
243243
#define CEED_VERSION_MINOR 10
244-
#define CEED_VERSION_PATCH 0
245-
#define CEED_VERSION_RELEASE false
244+
#define CEED_VERSION_PATCH 1
245+
#define CEED_VERSION_RELEASE true
246246

247247
/// Compile-time check that the the current library version is at least as
248248
/// recent as the specified version. This macro is typically used in

0 commit comments

Comments
 (0)