Cicd/version bump on main#54
Merged
LittleCoinCoin merged 5 commits intoCrackingShells:devfrom Aug 26, 2025
Merged
Conversation
Version 0.4.X
Major: Replace custom versioning system with semantic-release. This requires using Conventional Commits for all future changes. - Remove custom scripts and workflows (327+ lines eliminated) - Add semantic-release configuration with Node.js dependencies - Update project structure for automated releases - Replace VERSION/VERSION.meta files with pyproject.toml version - Add commitizen for guided commit messages - Update documentation for Conventional Commits workflow - Add CONTRIBUTING.md with development guidelines - Configure GitHub Actions for semantic-release automation Migration benefits: - Fully automated versioning without manual intervention - Industry-standard Conventional Commits workflow - Elimination of complex custom code and potential infinite loops - Better compliance with GitHub best practices - Improved developer experience with guided tooling
**Major**: - Cleaning up the context documentation used for the CI update to `semantic-release`
Before switching to `semantic-release` the version was 0.4.2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a major overhaul of the project's CI/CD and release automation workflows, focusing on standardizing commit messages, automating semantic versioning and releases, and centralizing branch validation logic. Several legacy workflows have been removed and replaced with more maintainable, reusable, and industry-standard alternatives. The most important changes are grouped below:
Release & Tagging Workflow Modernization
.github/workflows/semantic-release.ymlto automate semantic versioning and release management using Semantic Release, replacing manual and legacy workflows. This includes automated changelog generation and integration with GitHub releases..releaserc.jsonto configure Semantic Release rules, branch settings, plugins, and changelog management for consistent release practices..github/workflows/release.yml,.github/workflows/tag-release.yml,.github/workflows/tag-cleanup.yml, and.github/workflows/commit_version_tag.yml, consolidating release and tagging logic into the new semantic release workflow. [1] [2] [3] [4]Commit Message Enforcement
.commitlintrc.jsonand.github/workflows/commitlint.ymlto enforce Conventional Commits for all PRs tomainanddev, ensuring standardized commit messages for automated versioning and changelog generation. [1] [2]