Skip to content

Commit

Permalink
release - update version number and notes
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylt committed Jan 10, 2025
1 parent 83153ff commit 418dcc0
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cff-version: 1.2.0
title: "libCEED: Efficient Extensible Discretization"
version: 0.12.0
date-released: 2023-10-31
version: 0.13.0
date-released: 2024-12-20
license: BSD-2-Clause
message: "Please cite the following works when using this software."
authors:
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PROJECT_NAME = libCEED
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = v0.12.0
PROJECT_NUMBER = v0.13.0

# 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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ Rust users can include libCEED via `Cargo.toml`:

```toml
[dependencies]
libceed = "0.12.0"
libceed = "0.13.0"
```

See the [Cargo documentation](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#specifying-dependencies-from-git-repositories) for details.
Expand Down
2 changes: 1 addition & 1 deletion ceed.pc.template
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ libdir=${prefix}/lib

Name: CEED
Description: Code for Efficient Extensible Discretization
Version: 0.12.0
Version: 0.13.0
Cflags: -I${includedir}
Libs: -L${libdir} -lceed
Libs.private: %libs_private%
10 changes: 10 additions & 0 deletions doc/sphinx/source/releasenotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ On this page we provide a summary of the main API changes, new features and exam

### Interface changes

### New features

### Examples

(v0-13)=

## v0.13 (Dec 20, 2024)

### Interface changes

- Add `bool` field type for `CeedQFunctionContext` and related interfaces to use `bool` fields.
- `CEED_BASIS_COLLOCATED` removed; users should only use `CEED_BASIS_NONE`.
- Remove unneeded pointer for `CeedElemRestrictionGetELayout`.
Expand Down
2 changes: 1 addition & 1 deletion rust/libceed-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ fn main() {
};
pkg_config::Config::new()
.statik(statik)
.atleast_version("0.12.0")
.atleast_version("0.13.0")
.probe(&ceed_pc)
.unwrap();

Expand Down
4 changes: 2 additions & 2 deletions rust/libceed/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = [
"Jeremy L Thompson <[email protected]>",
]
name = "libceed"
version = "0.12.0"
version = "0.13.0"
edition = "2018"
rust-version = "1.56"
license = "BSD-2-Clause"
Expand All @@ -18,7 +18,7 @@ keywords = ["libceed", "exascale", "high-order"]
categories = ["science"]

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

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion rust/libceed/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ See the [libCEED user manual](https://libceed.org) for details on [interface con
To call libCEED from a Rust package, the following `Cargo.toml` can be used.
```toml
[dependencies]
libceed = "0.12.0"
libceed = "0.13.0"
```

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

0 comments on commit 418dcc0

Please sign in to comment.