From 57c1494d8ac8965b79e36433715cc40a7f86886d Mon Sep 17 00:00:00 2001 From: Kirk Rodrigues <2454684+kirkrodrigues@users.noreply.github.com> Date: Mon, 6 May 2024 20:20:07 -0400 Subject: [PATCH] Bump version for 0.1.0 release. --- Taskfile.yml | 2 +- components/clp-package-utils/pyproject.toml | 2 +- .../clp-py-utils/clp_py_utils/clp_config.py | 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 +- components/package-template/src/README.md | 2 +- docs/conf/conf.py | 15 ++------------- 9 files changed, 10 insertions(+), 21 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index b0135038c3..5b4c9007f7 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.1.0" tasks: default: diff --git a/components/clp-package-utils/pyproject.toml b/components/clp-package-utils/pyproject.toml index 35d8c78cf6..ce57555e7c 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.1.0" description = "Utilities for the CLP package." authors = ["YScope Inc. "] readme = "README.md" diff --git a/components/clp-py-utils/clp_py_utils/clp_config.py b/components/clp-py-utils/clp_py_utils/clp_config.py index 142ce614e3..c7eeef612e 100644 --- a/components/clp-py-utils/clp_py_utils/clp_config.py +++ b/components/clp-py-utils/clp_py_utils/clp_config.py @@ -415,7 +415,7 @@ def load_execution_container_name(self): os_release = dotenv_values(self._os_release_file_path) if "ubuntu" == os_release["ID"]: self.execution_container = ( - f"clp-execution-x86-{os_release['ID']}-{os_release['VERSION_CODENAME']}:main" + f"clp-execution-x86-{os_release['ID']}-{os_release['VERSION_CODENAME']}:0.1.0" ) else: raise NotImplementedError( diff --git a/components/clp-py-utils/pyproject.toml b/components/clp-py-utils/pyproject.toml index 88c5dce26d..217dd72651 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.1.0" 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 dbea42c326..fba50576f8 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.1.0"; } // namespace clp #endif // CLP_VERSION_HPP diff --git a/components/core/src/glt/version.hpp b/components/core/src/glt/version.hpp index 15062659c5..ba0d149b85 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.1.0"; } // namespace glt #endif // GLT_VERSION_HPP diff --git a/components/job-orchestration/pyproject.toml b/components/job-orchestration/pyproject.toml index c6581cc61f..5bd78205cf 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.1.0" description = "Scheduler and worker cluster for CLP's distributed architecture." authors = ["YScope Inc. "] readme = "README.md" diff --git a/components/package-template/src/README.md b/components/package-template/src/README.md index 173f9d927d..485dbae927 100644 --- a/components/package-template/src/README.md +++ b/components/package-template/src/README.md @@ -5,4 +5,4 @@ compressed data without decompression. CLP's compression ratio is significantly general-purpose compressors like gzip. For setup and usage instructions, see -https://docs.yscope.com/clp/main/user-guide/quick-start-overview +https://docs.yscope.com/clp/0.1.0/user-guide/quick-start-overview diff --git a/docs/conf/conf.py b/docs/conf/conf.py index bf009a0baf..33b06c3bb9 100644 --- a/docs/conf/conf.py +++ b/docs/conf/conf.py @@ -66,26 +66,15 @@ "navbar_start": ["navbar-logo", "version-switcher"], "navbar_end": ["navbar-icon-links", "theme-switcher"], "primary_sidebar_end": [], - "secondary_sidebar_items": ["page-toc", "edit-this-page"], + "secondary_sidebar_items": ["page-toc"], "show_prev_next": False, "switcher": { "json_url": "https://docs.yscope.com/_static/clp-versions.json", - "version_match": "main", + "version_match": "0.1.0", }, "use_edit_page_button": True, } -# -- Theme source buttons ------------------------------------------------------ -# https://pydata-sphinx-theme.readthedocs.io/en/stable/user_guide/source-buttons.html - -html_context = { - "github_user": "y-scope", - "github_repo": "clp", - "github_version": "main", - "doc_path": "docs/src", -} - - # -- Theme custom CSS and JS --------------------------------------------------- # https://pydata-sphinx-theme.readthedocs.io/en/stable/user_guide/static_assets.html