Skip to content
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
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ find_package(cetmodules 4.01.01 REQUIRED)

# ##############################################################################
# Main project declaration
project(phlex VERSION 0.3.0 LANGUAGES CXX)
project(phlex VERSION 0.3.1 LANGUAGES CXX)

include(CetCMakeEnv)
cet_cmake_env()
Expand Down
2 changes: 1 addition & 1 deletion INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ To guide the creation of the environment, download the environment configuration
```bash
spack env create my-phlex-environment
spack env activate my-phlex-environment
spack add phlex@0.3.0 %%gcc@15
spack add phlex@0.3.1 %%gcc@15
spack concretize
```

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
project = "Phlex"
copyright = "2025-2026, The Phlex Developers"
author = "The Phlex Developers"
release = "0.3.0"
release = "0.3.1"

# -- General configuration ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion phlex/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ cet_make_library(
phlex::configuration
)

install(FILES concurrency.hpp module.hpp source.hpp DESTINATION include/phlex)
install(FILES concurrency.hpp driver.hpp module.hpp source.hpp DESTINATION include/phlex)
install(FILES detail/plugin_macros.hpp DESTINATION include/phlex/detail)

cet_make_library(
Expand Down
Loading