From ffdf1cad0508bc87a4d5dd5c100d17270fc81b32 Mon Sep 17 00:00:00 2001 From: kirkrodrigues <2454684+kirkrodrigues@users.noreply.github.com> Date: Sat, 11 May 2024 15:12:25 -0400 Subject: [PATCH] Bump versions for next dev cycle. (#397) --- Taskfile.yml | 2 +- components/clp-package-utils/pyproject.toml | 2 +- components/clp-py-utils/pyproject.toml | 2 +- components/core/src/clp/version.hpp | 2 +- components/core/src/glt/version.hpp | 2 +- components/job-orchestration/pyproject.toml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index b0135038c..256898d55 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -16,7 +16,7 @@ vars: G_WEBUI_NODEJS_BIN_DIR: "{{.G_WEBUI_NODEJS_BUILD_DIR}}/bin" # Versions - G_PACKAGE_VERSION: "0.0.3-dev" + G_PACKAGE_VERSION: "0.2.0-dev" tasks: default: diff --git a/components/clp-package-utils/pyproject.toml b/components/clp-package-utils/pyproject.toml index 35d8c78cf..25672d84a 100644 --- a/components/clp-package-utils/pyproject.toml +++ b/components/clp-package-utils/pyproject.toml @@ -3,7 +3,7 @@ requires-python = ">= 3.8" [tool.poetry] name = "clp-package-utils" -version = "0.0.3-dev" +version = "0.2.0-dev" description = "Utilities for the CLP package." authors = ["YScope Inc. "] readme = "README.md" diff --git a/components/clp-py-utils/pyproject.toml b/components/clp-py-utils/pyproject.toml index 88c5dce26..4e827b926 100644 --- a/components/clp-py-utils/pyproject.toml +++ b/components/clp-py-utils/pyproject.toml @@ -3,7 +3,7 @@ requires-python = ">= 3.8" [tool.poetry] name = "clp-py-utils" -version = "0.0.3-dev" +version = "0.2.0-dev" description = "Utilities for other Python packages in CLP." authors = ["YScope Inc. "] readme = "README.md" diff --git a/components/core/src/clp/version.hpp b/components/core/src/clp/version.hpp index dbea42c32..06f5a1a74 100644 --- a/components/core/src/clp/version.hpp +++ b/components/core/src/clp/version.hpp @@ -2,7 +2,7 @@ #define CLP_VERSION_HPP namespace clp { -constexpr char cVersion[] = "0.0.3-dev"; +constexpr char cVersion[] = "0.2.0-dev"; } // namespace clp #endif // CLP_VERSION_HPP diff --git a/components/core/src/glt/version.hpp b/components/core/src/glt/version.hpp index 15062659c..3577237f9 100644 --- a/components/core/src/glt/version.hpp +++ b/components/core/src/glt/version.hpp @@ -2,7 +2,7 @@ #define GLT_VERSION_HPP namespace glt { -constexpr char cVersion[] = "0.0.3-dev"; +constexpr char cVersion[] = "0.2.0-dev"; } // namespace glt #endif // GLT_VERSION_HPP diff --git a/components/job-orchestration/pyproject.toml b/components/job-orchestration/pyproject.toml index c6581cc61..9150b2fd9 100644 --- a/components/job-orchestration/pyproject.toml +++ b/components/job-orchestration/pyproject.toml @@ -3,7 +3,7 @@ requires-python = ">= 3.8" [tool.poetry] name = "job-orchestration" -version = "0.0.3-dev" +version = "0.2.0-dev" description = "Scheduler and worker cluster for CLP's distributed architecture." authors = ["YScope Inc. "] readme = "README.md"