Skip to content

Commit 48cbcd2

Browse files
committed
release - update version number and notes
1 parent b4e8f36 commit 48cbcd2

File tree

8 files changed

+19
-9
lines changed

8 files changed

+19
-9
lines changed

Diff for: CITATION.cff

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cff-version: 1.2.0
22
title: "libCEED: Efficient Extensible Discretization"
3-
version: 0.12.0
4-
date-released: 2023-10-31
3+
version: 0.13.0
4+
date-released: 2025-03-23
55
license: BSD-2-Clause
66
message: "Please cite the following works when using this software."
77
authors:

Diff for: Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PROJECT_NAME = libCEED
4848
# could be handy for archiving the generated documentation or if some version
4949
# control system is used.
5050

51-
PROJECT_NUMBER = v0.12.0
51+
PROJECT_NUMBER = v0.13.0
5252

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

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ Rust users can include libCEED via `Cargo.toml`:
122122

123123
```toml
124124
[dependencies]
125-
libceed = "0.12.0"
125+
libceed = "0.13.0"
126126
```
127127

128128
See the [Cargo documentation](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#specifying-dependencies-from-git-repositories) for details.

Diff for: ceed.pc.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cflags_extra=%opt%
55

66
Name: CEED
77
Description: Code for Efficient Extensible Discretization
8-
Version: 0.12.0
8+
Version: 0.13.0
99
Cflags: -I${includedir}
1010
Libs: -L${libdir} -lceed
1111
Libs.private: %libs_private%

Diff for: doc/sphinx/source/releasenotes.md

+10
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ On this page we provide a summary of the main API changes, new features and exam
88

99
### Interface changes
1010

11+
### New features
12+
13+
### Examples
14+
15+
(v0-13)=
16+
17+
## v0.13 (March 23, 2025)
18+
19+
### Interface changes
20+
1121
- Add `bool` field type for `CeedQFunctionContext` and related interfaces to use `bool` fields.
1222
- `CEED_BASIS_COLLOCATED` removed; users should only use `CEED_BASIS_NONE`.
1323
- Remove unneeded pointer for `CeedElemRestrictionGetELayout`.

Diff for: rust/libceed-sys/build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ fn main() {
4141
};
4242
pkg_config::Config::new()
4343
.statik(statik)
44-
.atleast_version("0.12.0")
44+
.atleast_version("0.13.0")
4545
.probe(&ceed_pc)
4646
.unwrap();
4747

Diff for: rust/libceed/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = [
55
"Jeremy L Thompson <[email protected]>",
66
]
77
name = "libceed"
8-
version = "0.12.0"
8+
version = "0.13.0"
99
edition = "2018"
1010
rust-version = "1.56"
1111
license = "BSD-2-Clause"
@@ -18,7 +18,7 @@ keywords = ["libceed", "exascale", "high-order"]
1818
categories = ["science"]
1919

2020
[dependencies]
21-
libceed-sys = { version = "0.12", path = "../libceed-sys" }
21+
libceed-sys = { version = "0.13", path = "../libceed-sys" }
2222
katexit = { version = "0.1.1", optional = true }
2323

2424
[dev-dependencies]

Diff for: rust/libceed/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See the [libCEED user manual](https://libceed.org) for details on [interface con
1414
To call libCEED from a Rust package, the following `Cargo.toml` can be used.
1515
```toml
1616
[dependencies]
17-
libceed = "0.12.0"
17+
libceed = "0.13.0"
1818
```
1919

2020
For a development version of the libCEED Rust bindings, use the following `Cargo.toml`.

0 commit comments

Comments
 (0)