-
Notifications
You must be signed in to change notification settings - Fork 28
feat: add automated version bump and release workflows #217
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
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
- Add auto-bump workflow for automated version management - Add release workflow for creating GitHub releases - Add Java publish workflow for Maven Central deployment - Add Python publish workflow for PyPI deployment - Add Rust publish workflow for crates.io deployment - Add CI helper scripts for version calculation and bumping - Handle auto-generated code regeneration during version updates The workflows support: - Automatic version bumping based on commit messages - Preview/beta releases - Multi-language publishing (Java, Python, Rust) - Dry run mode for testing - Automatic release note generation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Remove redundant java-release.yml and python-release.yml workflows - Update existing java-publish.yml with: - Auto-generated code generation (apache-client, springboot-server) - Maven Central availability monitoring - Update existing python-publish.yml with: - Auto-generated urllib3_client generation - Individual package publishing - PyPI availability verification - Rename rust-release.yml to rust-publish.yml with: - Rust caching and proper dependencies (protobuf, ssl) - Auto-generated reqwest-client generation - crates.io publishing support All publish workflows now trigger on GitHub releases and handle auto-generated code regeneration before publishing. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Add .bumpversion.toml configuration for all project files - Update ci/bump_version.py to use bump-my-version - Modify workflows to use bump-my-version for version bumping - Regenerate auto-generated modules using 'make build' after version bump - Simplify version management across Java, Python, and Rust modules The version bumping now: 1. Uses bump-my-version to update all configured files 2. Runs 'make build' to regenerate auto-generated modules 3. Ensures consistent versioning across all components 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Remove 'make build' from bump_version.py script - Add 'make build' as separate step in auto-bump workflow - Add 'make build' as separate step in release workflow - This provides better visibility and control in CI/CD pipelines 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
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.
Add auto-release and version bump and rust publish