Skip to content

Commit e8f2345

Browse files
committed
libCEED 0.8
1 parent 80132a9 commit e8f2345

File tree

7 files changed

+27
-9
lines changed

7 files changed

+27
-9
lines changed

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.7
41+
PROJECT_NUMBER = v0.8
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.7
7+
Version: 0.8
88
Cflags: -I${includedir}
99
Libs: -L${libdir} -lceed
1010
Libs.private: %libs_private%

doc/sphinx/source/libCEEDdev.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ for example. All issues reported by ``make tidy`` should be fixed.
108108
Header Files
109109
----------------------------------------
110110

111-
Header inclusion for source files should follow the principal of 'include what you use' rather than relying upon transitive ``#include``s to define all symbols.
111+
Header inclusion for source files should follow the principal of 'include what you use' rather than relying upon transitive ``#include`` to define all symbols.
112112

113113
Every symbol that is used in the source file ``foo.c`` should be defined in ``foo.c``, ``foo.h``, or in a header file ``#include``d in one of these two locations.
114114
Please check your code by running the tool ``include-what-you-use`` to see recommendations for changes to your source.

doc/sphinx/source/releasenotes.rst

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,25 @@ for each release of libCEED.
99
Current Main
1010
----------------------------------------
1111

12-
The current ``main`` (formerly called ``master``) branch contains bug fixes and additional features.
12+
The current ``main`` branch contains bug fixes and additional features.
13+
14+
Interface changes
15+
^^^^^^^^^^^^^^^^^
16+
17+
New features
18+
^^^^^^^^^^^^
19+
20+
Performance improvements
21+
^^^^^^^^^^^^^^^^^^^^^^^^
22+
23+
Examples
24+
^^^^^^^^
25+
26+
27+
.. _v0.8:
28+
29+
v0.8 (Mar 31, 2021)
30+
-------------------
1331

1432
Interface changes
1533
^^^^^^^^^^^^^^^^^
@@ -18,14 +36,14 @@ Interface changes
1836

1937
New features
2038
^^^^^^^^^^^^
21-
* New HIP MAGMA backends for hipMAGMA library users: ``/gpu/hip/magma`` and ``/gpu/hip/magma/det``.
2239
* Julia and Rust interfaces added, providing a nearly 1-1 correspondence with the C interface, plus some convenience features.
23-
* New HIP backends for improved tensor basis performance: ``/gpu/hip/shared`` and ``/gpu/hip/gen``.
2440
* Static libraries can be built with ``make STATIC=1`` and the pkg-config file is installed accordingly.
2541
* Add :cpp:func:`CeedOperatorLinearAssembleSymbolic` and :cpp:func:`CeedOperatorLinearAssemble` to support full assembly of libCEED operators.
2642

2743
Performance improvements
2844
^^^^^^^^^^^^^^^^^^^^^^^^
45+
* New HIP MAGMA backends for hipMAGMA library users: ``/gpu/hip/magma`` and ``/gpu/hip/magma/det``.
46+
* New HIP backends for improved tensor basis performance: ``/gpu/hip/shared`` and ``/gpu/hip/gen``.
2947

3048
Examples
3149
^^^^^^^^

julia/LibCEED.jl/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ Cassette = "0.3"
2626
Requires = "1"
2727
StaticArrays = "0.12"
2828
UnsafeArrays = "1"
29-
libCEED_jll = "0.7"
29+
libCEED_jll = "0.8"

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [
66
]
77
build = "build.rs"
88
name = "libceed"
9-
version = "0.7.0"
9+
version = "0.8.0"
1010
links = "libceed"
1111
edition = "2018"
1212

rust/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ fn main() {
3232
};
3333
pkg_config::Config::new()
3434
.statik(statik)
35-
.atleast_version("0.7")
35+
.atleast_version("0.8")
3636
.probe(&ceed_pc)
3737
.unwrap();
3838

0 commit comments

Comments
 (0)