https://github.com/lucasmelin/molting
Automatically bump your python project files to the latest version.
https://github.com/lucasmelin/molting
changelog cli python
Last synced: 5 months ago
JSON representation
Automatically bump your python project files to the latest version.
- Host: GitHub
- URL: https://github.com/lucasmelin/molting
- Owner: lucasmelin
- License: mit
- Created: 2022-03-14T14:22:54.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-10-10T20:05:19.000Z (almost 3 years ago)
- Last Synced: 2025-05-05T15:17:36.669Z (about 1 year ago)
- Topics: changelog, cli, python
- Language: Python
- Homepage: https://pypi.org/project/molting/
- Size: 146 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Molting 🐍🐍
Automatically bump your project files to the latest version.
## Overview
Simplifies the process of creating new releases by bumping version numbers, updating release notes, and creating a GitHub release.
- **Easy to use** - Can be called without any arguments; let `molting` figure out the specifics.
- **Built for CI/CD** - Run from GitHub Actions or similar CI/CD tool to completely automate your release process.
## How it works
```mermaid
graph TD
A[Invoke molting CLI] -->|Specify semver type| B(Calculate new version)
A -->|Omit semver type| C(Get commit messages)
C --> D[Predict change type]
D --> B
B --> G(Get changelog notes)
G -->|Changelog notes found| E(Update version in files)
G -->|No Changelog notes exist| J(Get commit messages)
J -->|Write commit messages to Changelog| G
E --> F(Create new git tag)
F --> K(Create GitHub release with Changelog notes)
```