Skip to content

Commit 099afc0

Browse files
authored
Merge branch 'main' into package-image
2 parents c49d8b4 + 4fa8a55 commit 099afc0

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

components/clp-package-utils/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires-python = ">= 3.9"
33

44
[tool.poetry]
55
name = "clp-package-utils"
6-
version = "0.4.0-dev"
6+
version = "0.5.1-dev"
77
description = "Utilities for the CLP package."
88
authors = ["YScope Inc. <dev@yscope.com>"]
99
readme = "README.md"

components/clp-py-utils/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires-python = ">= 3.9"
33

44
[tool.poetry]
55
name = "clp-py-utils"
6-
version = "0.4.0-dev"
6+
version = "0.5.1-dev"
77
description = "Utilities for other Python packages in CLP."
88
authors = ["YScope Inc. <dev@yscope.com>"]
99
readme = "README.md"

components/core/src/clp/version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define CLP_VERSION_HPP
33

44
namespace clp {
5-
constexpr char cVersion[] = "0.4.0-dev";
5+
constexpr char cVersion[] = "0.5.1-dev";
66
} // namespace clp
77

88
#endif // CLP_VERSION_HPP

components/core/src/glt/version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define GLT_VERSION_HPP
33

44
namespace glt {
5-
constexpr char cVersion[] = "0.4.0-dev";
5+
constexpr char cVersion[] = "0.5.1-dev";
66
} // namespace glt
77

88
#endif // GLT_VERSION_HPP

components/job-orchestration/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires-python = ">= 3.9"
33

44
[tool.poetry]
55
name = "job-orchestration"
6-
version = "0.4.0-dev"
6+
version = "0.5.1-dev"
77
description = "Scheduler and worker cluster for CLP's distributed architecture."
88
authors = ["YScope Inc. <dev@yscope.com>"]
99
readme = "README.md"

taskfile.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ vars:
2929
G_UTILS_TASKFILE: "{{.ROOT_DIR}}/tools/yscope-dev-utils/exports/taskfiles/utils/utils.yaml"
3030

3131
# Versions
32-
G_PACKAGE_VERSION: "0.4.0-dev"
32+
G_PACKAGE_VERSION: "0.5.1-dev"
3333

3434
# Build parameters
3535
# NOTE: Defaulting to an empty string is safe since CMake ignores an empty string.
@@ -551,7 +551,7 @@ tasks:
551551
requires:
552552
vars: ["COMPONENT"]
553553
sources:
554-
- "{{.G_BUILD_DIR}}/{{.COMPONENT}}_venv.md5"
554+
- "{{.G_BUILD_DIR}}/{{.COMPONENT}}-venv.md5"
555555
- "{{.PACKAGE}}/**/*"
556556
- "{{.ROOT_DIR}}/requirements.txt"
557557
- "{{.TASKFILE}}"

0 commit comments

Comments
 (0)