Skip to content

Commit 63574e6

Browse files
committed
Bump version for 0.2.1 release.
1 parent ec0821d commit 63574e6

File tree

10 files changed

+11
-22
lines changed

10 files changed

+11
-22
lines changed

Taskfile.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ vars:
3030
G_UTILS_TASKFILE: "{{.ROOT_DIR}}/tools/yscope-dev-utils/taskfiles/utils.yml"
3131

3232
# Versions
33-
G_PACKAGE_VERSION: "0.2.0-dev"
33+
G_PACKAGE_VERSION: "0.2.1"
3434

3535
tasks:
3636
default:

components/clp-package-utils/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires-python = ">= 3.8"
33

44
[tool.poetry]
55
name = "clp-package-utils"
6-
version = "0.2.0-dev"
6+
version = "0.2.1"
77
description = "Utilities for the CLP package."
88
authors = ["YScope Inc. <[email protected]>"]
99
readme = "README.md"

components/clp-py-utils/clp_py_utils/clp_config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ def load_execution_container_name(self):
483483
os_release = dotenv_values(self._os_release_file_path)
484484
if "ubuntu" == os_release["ID"]:
485485
self.execution_container = (
486-
f"clp-execution-x86-{os_release['ID']}-{os_release['VERSION_CODENAME']}:main"
486+
f"clp-execution-x86-{os_release['ID']}-{os_release['VERSION_CODENAME']}:0.2.1"
487487
)
488488
else:
489489
raise NotImplementedError(

components/clp-py-utils/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires-python = ">= 3.8"
33

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

components/core/src/clp/version.hpp

+1-1
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.2.0-dev";
5+
constexpr char cVersion[] = "0.2.1";
66
} // namespace clp
77

88
#endif // CLP_VERSION_HPP

components/core/src/glt/version.hpp

+1-1
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.2.0-dev";
5+
constexpr char cVersion[] = "0.2.1";
66
} // namespace glt
77

88
#endif // GLT_VERSION_HPP

components/job-orchestration/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires-python = ">= 3.8"
33

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

components/package-template/src/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ compressed data without decompression. CLP's compression ratio is significantly
55
general-purpose compressors like gzip.
66

77
For setup and usage instructions, see
8-
https://docs.yscope.com/clp/main/user-guide/quick-start-overview
8+
https://docs.yscope.com/clp/v0.2.1/user-guide/quick-start-overview

components/webui/imports/ui/Sidebar/Sidebar.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const Sidebar = ({
5252
<SidebarButton
5353
icon={faCircleInfo}
5454
label={"Documentation"}
55-
link={"https://docs.yscope.com/clp/main/"}/>
55+
link={"https://docs.yscope.com/clp/v0.2.1/"}/>
5656
<SidebarButton
5757
icon={faMessage}
5858
label={"Get Support"}

docs/conf/conf.py

+2-13
Original file line numberDiff line numberDiff line change
@@ -66,26 +66,15 @@
6666
"navbar_start": ["navbar-logo", "version-switcher"],
6767
"navbar_end": ["navbar-icon-links", "theme-switcher"],
6868
"primary_sidebar_end": [],
69-
"secondary_sidebar_items": ["page-toc", "edit-this-page"],
69+
"secondary_sidebar_items": ["page-toc"],
7070
"show_prev_next": False,
7171
"switcher": {
7272
"json_url": "https://docs.yscope.com/_static/clp-versions.json",
73-
"version_match": "main",
73+
"version_match": "0.2.1",
7474
},
7575
"use_edit_page_button": True,
7676
}
7777

78-
# -- Theme source buttons ------------------------------------------------------
79-
# https://pydata-sphinx-theme.readthedocs.io/en/stable/user_guide/source-buttons.html
80-
81-
html_context = {
82-
"github_user": "y-scope",
83-
"github_repo": "clp",
84-
"github_version": "main",
85-
"doc_path": "docs/src",
86-
}
87-
88-
8978
# -- Theme custom CSS and JS ---------------------------------------------------
9079
# https://pydata-sphinx-theme.readthedocs.io/en/stable/user_guide/static_assets.html
9180

0 commit comments

Comments
 (0)