Skip to content

Commit

Permalink
Update versions. (#3171)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhale committed Apr 25, 2024
1 parent a3bf1eb commit 59449a0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ body:
description: What version of DOLFINx are you running?
options:
- main branch
- 0.8.0
- 0.7.3
- 0.7.2
- 0.7.1
Expand Down
4 changes: 2 additions & 2 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.7.3
date-released: 2023-12-30
version: 0.8.0
date-released: 2024-04-22
url: "https://github.com/FEniCS/dolfinx"
doi: "10.5281/zenodo.10047760"
authors:
Expand Down
6 changes: 3 additions & 3 deletions cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.19)

# ------------------------------------------------------------------------------
# Set project name and version number
project(DOLFINX VERSION "0.8.0.0")
project(DOLFINX VERSION "0.9.0.0")

set(DOXYGEN_DOLFINX_VERSION
${DOLFINX_VERSION}
Expand Down Expand Up @@ -338,15 +338,15 @@ set_package_properties(
# which method UFCx was found
if(NOT DOLFINX_UFCX_PYTHON)
# Check in CONFIG mode, i.e. look for installed ufcxConfig.cmake
find_package(ufcx 0.7 REQUIRED CONFIG)
find_package(ufcx 0.9 REQUIRED CONFIG)
else()
# Check in MODULE mode (using FindUFCX.cmake)
find_package(
Python3
COMPONENTS Interpreter
REQUIRED
)
find_package(UFCx 0.7 REQUIRED MODULE)
find_package(UFCx 0.9 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 @@ -13,7 +13,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "fenics-dolfinx"
version = "0.8.0.dev0"
version = "0.9.0.dev0"
description = "DOLFINx Python interface"
readme = "../README.md"
requires-python = ">=3.9.0"
Expand All @@ -27,9 +27,9 @@ dependencies = [
"cffi",
"petsc4py",
"mpi4py",
"fenics-basix>=0.8.0.dev0,<0.9.0",
"fenics-ffcx>=0.8.0.dev0,<0.9.0",
"fenics-ufl>=2023.3.0.dev0,<2023.4.0",
"fenics-basix>=0.9.0.dev0,<0.10.0",
"fenics-ffcx>=0.9.0.dev0,<0.10.0",
"fenics-ufl>=2024.2.0.dev0,<2024.3.0",
]

[project.optional-dependencies]
Expand Down

0 comments on commit 59449a0

Please sign in to comment.