Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ body:
description: What version of DOLFINx are you running?
options:
- main branch
- 0.11.0
- 0.10.0
- 0.9.0
- 0.8.0
Expand Down
8 changes: 4 additions & 4 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
cff-version: 1.2.0
message: "If you use this software, please cite it as below."
title: "DOLFINx"
version: 0.10.0
date-released: 2025-10-19
version: 0.11.0
date-released: 2026-06-09
url: "https://github.com/FEniCS/dolfinx"
doi: "10.5281/zenodo.10047760"
authors:
Expand Down Expand Up @@ -41,7 +41,7 @@ preferred-citation:
- family-names: "Wells"
given-names: "Garth N."
orcid: "https://orcid.org/0000-0001-5291-7951"
doi: "10.5281/zenodo.10447666"
doi: "10.5281/zenodo.10447665"
journal: "preprint"
title: "DOLFINx: the next generation FEniCS problem solving environment"
year: 2023
year: 2025
8 changes: 4 additions & 4 deletions cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ endif()

# ------------------------------------------------------------------------------
# Set project name and version number
project(DOLFINX VERSION "0.11.0.0")
project(DOLFINX VERSION "0.12.0.0")

set(DOXYGEN_DOLFINX_VERSION
${DOLFINX_VERSION}
Expand Down Expand Up @@ -343,7 +343,7 @@ if(DOLFINX_BASIX_PYTHON)
endif()
endif()

find_package(Basix 0.11 REQUIRED CONFIG)
find_package(Basix 0.12 REQUIRED CONFIG)
set_package_properties(
basix PROPERTIES
TYPE REQUIRED
Expand Down Expand Up @@ -375,12 +375,12 @@ set_package_properties(
# method UFCx was found.
if(NOT DOLFINX_UFCX_PYTHON)
# Check in CONFIG mode, i.e. look for installed ufcxConfig.cmake
find_package(ufcx 0.11 REQUIRED CONFIG)
find_package(ufcx 0.12 REQUIRED CONFIG)
else()
# Check in MODULE mode (using FindUFCX.cmake) using Python
# interpreter
find_package(Python3 COMPONENTS Interpreter REQUIRED)
find_package(UFCx 0.11 REQUIRED MODULE)
find_package(UFCx 0.12 REQUIRED MODULE)
endif()

set_package_properties(
Expand Down
8 changes: 4 additions & 4 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "fenics-dolfinx"
version = "0.11.0.dev0"
version = "0.12.0.dev0"
description = "DOLFINx Python interface"
readme = "../README.md"
requires-python = ">=3.11"
Expand All @@ -24,9 +24,9 @@ dependencies = [
"numpy>=2",
"cffi",
"mpi4py",
"fenics-basix>=0.11.0.dev0",
"fenics-ffcx>=0.11.0.dev0",
"fenics-ufl>=2025.3.0.dev0",
"fenics-basix>=0.12.0.dev0",
"fenics-ffcx>=0.12.0.dev0",
"fenics-ufl>=2026.2.0.dev0",
]

[project.optional-dependencies]
Expand Down
Loading