Skip to content

Commit

Permalink
Bump version for 0.1.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
kirkrodrigues committed May 6, 2024
1 parent ca9431b commit 4bf1aa5
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
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.0.3-dev"
version = "0.1.0"
description = "Utilities for the CLP package."
authors = ["YScope Inc. <[email protected]>"]
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 @@ -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(
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.0.3-dev"
version = "0.1.0"
description = "Utilities for other Python packages in CLP."
authors = ["YScope Inc. <[email protected]>"]
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.0.3-dev";
constexpr char cVersion[] = "0.1.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.0.3-dev";
constexpr char cVersion[] = "0.1.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
Expand Up @@ -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. <[email protected]>"]
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/0.1.0/user-guide/quick-start-overview

0 comments on commit 4bf1aa5

Please sign in to comment.