feat: Add specialized version management system#12
Merged
Wesley1600 merged 1 commit intoclaude/umap-analogy-engine-v1-011CV5RMt18TqTU8du81wkYgfrom Nov 18, 2025
Conversation
Implemented a comprehensive version management skill that: - Records changes to templates, skills, and code - Maintains CHANGELOG.md following Keep a Changelog format - Integrates with Git for commits and tagging releases - Supports semantic versioning (MAJOR.MINOR.PATCH) Changes: - Added version metadata (__version__, __author__, __date__, __status__) to umap_analogy_engine.py - Created CHANGELOG.md with full v1.0.0 release history - Implemented version_manager.py utility with CLI interface - Created .version_config.json for version management settings - Updated README.md with version management documentation Features: - Current version display - Version bumping (major/minor/patch) - Change tracking with categorization (Added, Changed, Fixed, etc.) - Automatic changelog updates - Git tag creation - Multi-file version synchronization - Configurable auto-commit and auto-tag Usage: python version_manager.py status python version_manager.py add-change "description" -c Category python version_manager.py bump [major|minor|patch] python version_manager.py tag
c2dd9a0
into
claude/umap-analogy-engine-v1-011CV5RMt18TqTU8du81wkYg
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.
Implemented a comprehensive version management skill that:
Changes:
Features:
Usage:
python version_manager.py status python version_manager.py add-change "description" -c Category python version_manager.py bump [major|minor|patch] python version_manager.py tag