Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version number to 0.6.0 #2417

Merged
merged 3 commits into from
Oct 28, 2022
Merged
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
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.16)

# ------------------------------------------------------------------------------
# Set project name and version number
project(DOLFINX VERSION "0.5.2.0")
project(DOLFINX VERSION "0.6.0.0")

set(DOXYGEN_DOLFINX_VERSION ${DOLFINX_VERSION} CACHE STRING "Version for Doxygen" FORCE)

Expand Down Expand Up @@ -198,11 +198,11 @@ set_package_properties(HDF5 PROPERTIES TYPE REQUIRED
# method UFCx was found
if(NOT DOLFINX_UFCX_PYTHON)
# Check in CONFIG mode, i.e. look for installed ufcxConfig.cmake
find_package(ufcx ${DOLFINX_VERSION_MAJOR}.${DOLFINX_VERSION_MINOR} REQUIRED CONFIG)
find_package(ufcx 0.6 REQUIRED CONFIG)
else()
# Check in MODULE mode (using FindUFCX.cmake)
find_package(Python3 COMPONENTS Interpreter REQUIRED)
find_package(UFCx ${DOLFINX_VERSION_MAJOR}.${DOLFINX_VERSION_MINOR} REQUIRED MODULE)
find_package(UFCx 0.6 REQUIRED MODULE)
endif()

set_package_properties(UFCx PROPERTIES TYPE REQUIRED
Expand Down
4 changes: 2 additions & 2 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
print("Python 3.8 or higher required, please upgrade.")
sys.exit(1)

VERSION = "0.5.2.dev0"
VERSION = "0.6.0.dev0"

REQUIREMENTS = [
"cffi",
"numpy>=1.21",
"mpi4py",
"petsc4py",
"fenics-ffcx>=0.5.1.dev0,<0.6.0",
"fenics-ffcx>=0.6.0.dev0,<0.7.0",
"fenics-ufl>=2022.3.0.dev0,<2022.4.0"
]

Expand Down