Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/clp-mcp-server/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "clp-mcp-server"
version = "0.7.1-dev"
version = "0.8.0"
description = "MCP server for CLP"
authors = [{name = "YScope Inc.", email = "dev@yscope.com"}]
readme = "README.md"
Expand Down
6 changes: 3 additions & 3 deletions components/clp-mcp-server/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion components/clp-package-utils/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "clp-package-utils"
version = "0.7.1-dev"
version = "0.8.0"
description = "Utilities for the CLP package."
authors = [{name = "YScope Inc.", email = "dev@yscope.com"}]
readme = "README.md"
Expand Down
6 changes: 3 additions & 3 deletions components/clp-package-utils/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion components/clp-py-utils/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "clp-py-utils"
version = "0.7.1-dev"
version = "0.8.0"
description = "Utilities for other Python packages in CLP."
authors = [{name = "YScope Inc.", email = "dev@yscope.com"}]
readme = "README.md"
Expand Down
6 changes: 3 additions & 3 deletions components/clp-py-utils/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.7.1-dev";
constexpr char cVersion[] = "0.8.0";
} // 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.7.1-dev";
constexpr char cVersion[] = "0.8.0";
} // 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
@@ -1,6 +1,6 @@
[project]
name = "job-orchestration"
version = "0.7.1-dev"
version = "0.8.0"
description = "Scheduler and worker cluster for CLP's distributed architecture."
authors = [{name = "YScope Inc.", email = "dev@yscope.com"}]
readme = "README.md"
Expand Down
6 changes: 3 additions & 3 deletions components/job-orchestration/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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-docs/quick-start-overview
https://docs.yscope.com/clp/v0.8.0/user-docs/quick-start-overview
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const TIMESTAMP_KEY_HELPER_TEXT = (
the command line without a timestamp filter. Certain characters require escaping. See the
{" "}
<Typography.Link
href={"https://docs.yscope.com/clp/main/user-docs/reference-json-search-syntax.html#characters-that-require-escaping"}
href={"https://docs.yscope.com/clp/v0.8.0/user-docs/reference-json-search-syntax.html#characters-that-require-escaping"}
rel={"noopener"}
target={"_blank"}
>
Expand Down
18 changes: 4 additions & 14 deletions docs/conf/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
from sphinx.application import Sphinx

# Constants
CLP_GIT_REF = "main"
CLP_VERSION = "0.8.0"
CLP_GIT_REF = f"v{CLP_VERSION}"


# -- Project information -------------------------------------------------------
Expand Down Expand Up @@ -85,23 +86,12 @@
"navbar_start": ["navbar-logo", "version-switcher"],
"navbar_end": ["navbar-icon-links", "theme-switcher"],
"primary_sidebar_end": [],
"secondary_sidebar_items": ["page-toc", "edit-this-page"],

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do we want to instead keep the edit button but let it point to docs on the main branch?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The issue is that the docs on the main branch may change significantly, so having an edit button could be confusing. Alternatively, we could make it point at the release branch, but I would prefer not to encourage edits to release docs until we have a better workflow for updating such docs.

"secondary_sidebar_items": ["page-toc"],
"show_prev_next": False,
"switcher": {
"json_url": "https://docs.yscope.com/_static/clp-versions.json",
"version_match": CLP_GIT_REF,
"version_match": CLP_VERSION,
},
"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": CLP_GIT_REF,
"doc_path": "docs/src",
}


Expand Down
8 changes: 4 additions & 4 deletions integration-tests/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ vars:
G_UTILS_TASKFILE: "{{.ROOT_DIR}}/tools/yscope-dev-utils/exports/taskfiles/utils/utils.yaml"

# Versions
G_PACKAGE_VERSION: "0.7.1-dev"
G_PACKAGE_VERSION: "0.8.0"

# Build parameters
# NOTE: Defaulting to an empty string is safe since CMake ignores an empty string.
Expand Down
4 changes: 2 additions & 2 deletions tools/deployment/package-helm/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
apiVersion: "v2"
name: "clp"
version: "0.1.2-dev.19"
version: "0.1.2"
description: "A Helm chart for CLP's (Compressed Log Processor) package deployment"
type: "application"
appVersion: "0.7.1-dev"
appVersion: "0.8.0"
home: "https://github.com/y-scope/clp"
icon: "https://github.com/y-scope/clp/raw/main/docs/src/clp-logo.png"
sources: ["https://github.com/y-scope/clp"]
Expand Down
2 changes: 1 addition & 1 deletion tools/deployment/package-helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ image:
clpPackage:
repository: "ghcr.io/y-scope/clp/clp-package"
pullPolicy: "Always"
tag: "main"
tag: "0.8.0"

# - If false: Single-node deployment.
# - PVs use local storage bound to a single node.
Expand Down
Loading