Skip to content

Commit

Permalink
Bump version for 0.1.3 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
kirkrodrigues committed Sep 3, 2024
1 parent 9537fde commit 48fae7d
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 22 deletions.
2 changes: 1 addition & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ vars:
G_UTILS_TASKFILE: "{{.ROOT_DIR}}/tools/yscope-dev-utils/taskfiles/utils.yml"

# Versions
G_PACKAGE_VERSION: "0.2.0-dev"
G_PACKAGE_VERSION: "0.1.3"

tasks:
default:
Expand Down
2 changes: 1 addition & 1 deletion components/clp-package-utils/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires-python = ">= 3.8"

[tool.poetry]
name = "clp-package-utils"
version = "0.2.0-dev"
version = "0.1.3"
description = "Utilities for the CLP package."
authors = ["YScope Inc. <dev@yscope.com>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion components/clp-py-utils/clp_py_utils/clp_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,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.3"
)
else:
raise NotImplementedError(
Expand Down
2 changes: 1 addition & 1 deletion components/clp-py-utils/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires-python = ">= 3.8"

[tool.poetry]
name = "clp-py-utils"
version = "0.2.0-dev"
version = "0.1.3"
description = "Utilities for other Python packages in CLP."
authors = ["YScope Inc. <dev@yscope.com>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion components/core/src/clp/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define CLP_VERSION_HPP

namespace clp {
constexpr char cVersion[] = "0.2.0-dev";
constexpr char cVersion[] = "0.1.3";
} // namespace clp

#endif // CLP_VERSION_HPP
2 changes: 1 addition & 1 deletion components/core/src/glt/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define GLT_VERSION_HPP

namespace glt {
constexpr char cVersion[] = "0.2.0-dev";
constexpr char cVersion[] = "0.1.3";
} // namespace glt

#endif // GLT_VERSION_HPP
2 changes: 1 addition & 1 deletion components/job-orchestration/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires-python = ">= 3.8"

[tool.poetry]
name = "job-orchestration"
version = "0.2.0-dev"
version = "0.1.3"
description = "Scheduler and worker cluster for CLP's distributed architecture."
authors = ["YScope Inc. <dev@yscope.com>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion components/package-template/src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/v0.1.3/user-guide/quick-start-overview
2 changes: 1 addition & 1 deletion components/webui/imports/ui/Sidebar/Sidebar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const Sidebar = ({
<SidebarButton
icon={faCircleInfo}
label={"Documentation"}
link={"https://docs.yscope.com/clp/main/"}/>
link={"https://docs.yscope.com/clp/v0.1.3/"}/>
<SidebarButton
icon={faMessage}
label={"Get Support"}
Expand Down
15 changes: 2 additions & 13 deletions docs/conf/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.3",
},
"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

Expand Down

0 comments on commit 48fae7d

Please sign in to comment.