Skip to content

Commit 1638853

Browse files
authored
Bump versions to dev (#3962)
1 parent e6e1df9 commit 1638853

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,3 +129,6 @@ _petsc*
129129
# Files created by demos
130130
core
131131
log.txt
132+
133+
.pytest_cache/
134+
.mypy_cache/

cpp/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ endif()
1111

1212
# ------------------------------------------------------------------------------
1313
# Set project name and version number
14-
project(DOLFINX VERSION "0.10.0.0")
14+
project(DOLFINX VERSION "0.11.0.0")
1515

1616
set(DOXYGEN_DOLFINX_VERSION
1717
${DOLFINX_VERSION}
@@ -315,7 +315,7 @@ if(DOLFINX_BASIX_PYTHON)
315315
endif()
316316
endif()
317317

318-
find_package(Basix 0.10 REQUIRED CONFIG)
318+
find_package(Basix 0.11 REQUIRED CONFIG)
319319
set_package_properties(
320320
basix PROPERTIES
321321
TYPE REQUIRED
@@ -346,12 +346,12 @@ set_package_properties(
346346
# method UFCx was found.
347347
if(NOT DOLFINX_UFCX_PYTHON)
348348
# Check in CONFIG mode, i.e. look for installed ufcxConfig.cmake
349-
find_package(ufcx 0.10 REQUIRED CONFIG)
349+
find_package(ufcx 0.11 REQUIRED CONFIG)
350350
else()
351351
# Check in MODULE mode (using FindUFCX.cmake) using Python
352352
# interpreter
353353
find_package(Python3 COMPONENTS Interpreter REQUIRED)
354-
find_package(UFCx 0.10 REQUIRED MODULE)
354+
find_package(UFCx 0.11 REQUIRED MODULE)
355355
endif()
356356

357357
set_package_properties(

python/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ build-backend = "scikit_build_core.build"
1010

1111
[project]
1212
name = "fenics-dolfinx"
13-
version = "0.10.0.dev0"
13+
version = "0.11.0.dev0"
1414
description = "DOLFINx Python interface"
1515
readme = "../README.md"
1616
requires-python = ">=3.10.0"
@@ -23,9 +23,9 @@ dependencies = [
2323
"numpy>=1.21",
2424
"cffi",
2525
"mpi4py",
26-
"fenics-basix>=0.10.0.dev0",
27-
"fenics-ffcx>=0.10.0.dev0",
28-
"fenics-ufl>=2025.2.0.dev0",
26+
"fenics-basix>=0.11.0.dev0",
27+
"fenics-ffcx>=0.11.0.dev0",
28+
"fenics-ufl>=2025.3.0.dev0",
2929
]
3030

3131
[project.optional-dependencies]

0 commit comments

Comments
 (0)