Skip to content

Commit 563baa0

Browse files
authored
Merge pull request #36 from cloudengine-labs/copilot/update-changelog-and-version
chore: bump version to 0.3.0 and update CHANGELOG
2 parents eab1b32 + c5615fc commit 563baa0

2 files changed

Lines changed: 20 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
---
99

10+
## [0.3.0] - 2026-03-10
11+
12+
### Fixed
13+
- **`scaffold gitlab` empty stages when `--type deploy` without `--kubernetes`**`scaffold_gitlab.py`
14+
`_global_section()` previously excluded the `deploy` stage from the stages list whenever the
15+
`--kubernetes` flag was absent, producing an invalid pipeline. The condition is now corrected so
16+
that `--type deploy` always adds the `deploy` stage regardless of the Kubernetes flag.
17+
- **Missing deploy job when `--type deploy` without `--kubernetes`**`_deploy_job()` previously
18+
returned an empty dict when `kubernetes=False`, leaving the pipeline with a declared `deploy` stage
19+
but no corresponding job. A generic deploy stub (with branch-based rules) is now returned instead,
20+
giving users a ready-to-customise deployment step out of the box.
21+
22+
### Added
23+
- **GitHub star count badge in README** — the project README now displays a live GitHub Stars badge
24+
alongside the existing license and version badges.
25+
26+
---
27+
1028
## [0.2.0] - 2026-03-08
1129

1230
### Fixed
@@ -68,5 +86,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6886
- `.github/workflows/sanity.yml` – lightweight sanity-check workflow for PRs.
6987
- `.github/workflows/pages.yml` – GitHub Pages deployment workflow for the Hugo docs site.
7088

89+
[0.3.0]: https://github.com/cloudengine-labs/devops_os/compare/v0.2.0...v0.3.0
7190
[0.2.0]: https://github.com/cloudengine-labs/devops_os/compare/v0.1.0...v0.2.0
7291
[0.1.0]: https://github.com/cloudengine-labs/devops_os/releases/tag/v0.1.0

cli/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Single source of truth for the devopsos package version."""
22

3-
__version__ = "0.2.0"
3+
__version__ = "0.3.0"

0 commit comments

Comments
 (0)