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 cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ cmake_policy(SET CMP0135 NEW)
endif()

project(CLIPPy
VERSION 0.5
VERSION 0.5.1
DESCRIPTION "Command Line Interface Plus Python"
LANGUAGES CXX)

Expand Down
4 changes: 2 additions & 2 deletions cpp/include/clippy/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

#define CLIPPY_VERSION_MAJOR 0
#define CLIPPY_VERSION_MINOR 5
#define CLIPPY_VERSION_PATCH 0
#define CLIPPY_VERSION_NAME "0.5.0"
#define CLIPPY_VERSION_PATCH 1
#define CLIPPY_VERSION_NAME "0.5.1"
2 changes: 1 addition & 1 deletion py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "llnl-clippy"
version = "0.5.0"
version = "0.5.1"
authors = [
{ name="Roger Pearce"}, { name="Seth Bromberger"}
]
Expand Down
2 changes: 1 addition & 1 deletion py/src/clippy/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# backends to use for Clippy.
"backends": ("CLIPPY_BACKENDS", ["fs"]),
# semver version restrictions for the backend
"required_versions": ("CLIPPY_REQ_VERSIONS", ">=0.2.0"),
"required_versions": ("CLIPPY_REQ_VERSIONS", ">=0.5.0"),
# command prefix used to specify clippy task management with the HPC cluster
# for instance, if using slurm this could be set to 'srun -n1 -ppdebug'
"cmd_prefix": ("CLIPPY_CMD_PREFIX", ""),
Expand Down
Loading