From 6443e3b27d29aec04ce83d8424b57c339e35f865 Mon Sep 17 00:00:00 2001 From: "Jack S. Hale" Date: Wed, 9 Oct 2024 09:25:32 +0200 Subject: [PATCH] Update version to 0.9.0 --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 + cpp/CMakeLists.txt | 2 +- python/pyproject.toml | 8 ++++---- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index ebba6688165..7ed8ff589b4 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -53,6 +53,7 @@ body: description: What version of DOLFINx are you running? options: - main branch + - 0.9.0 - 0.8.0 - 0.7.3 - 0.7.2 diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index c9dd25e8d2e..af44ec80f04 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -8,7 +8,7 @@ endif() # ------------------------------------------------------------------------------ # Set project name and version number -project(DOLFINX VERSION "0.9.0.0") +project(DOLFINX VERSION "0.9.0") set(DOXYGEN_DOLFINX_VERSION ${DOLFINX_VERSION} diff --git a/python/pyproject.toml b/python/pyproject.toml index d45ad8e9b15..7f3bee8300a 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -10,7 +10,7 @@ build-backend = "scikit_build_core.build" [project] name = "fenics-dolfinx" -version = "0.9.0.dev0" +version = "0.9.0" description = "DOLFINx Python interface" readme = "../README.md" requires-python = ">=3.9.0" @@ -23,9 +23,9 @@ dependencies = [ "numpy>=1.21", "cffi<1.17", # See https://github.com/FEniCS/dolfinx/issues/3340 "mpi4py", - "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", + "fenics-basix>=0.9.0,<0.10.0", + "fenics-ffcx>=0.9.0,<0.10.0", + "fenics-ufl>=2024.2.0,<2024.3.0", ] [project.optional-dependencies]