Metadata-Version: 2.1
Name: gtbump
Version: 0.3.0
Summary: git-tag-bump: a simple utility for quickly bumping Git semver tags
Home-page: https://github.com/knadh/gtbump
Author: Kailash Nadh
Author-email: kailash@nadh.in
License: MIT License
Download-URL: https://github.com/knadh/gtbump
Description: <a href="https://zerodha.tech"><img src="https://zerodha.tech/static/images/github-badge.svg" align="right" /></a>
        
        # gtbump
        git tag bump: A simple utility to bump semver git tags.
        
        ## Install
        ```shell
        pip install gtbump
        ```
        
        ### Usage
        ```shell
        # cd to your git repo.
        
        # see the last tag.
        $ gtbump --show
        no tags found. Run --init to add v0.1.0
        
        # add a tag for the first time.
        $ gtbump --init
        bumped v0.0.0 -> v0.1.0
        
        # bump major | minor | patch
        $ gtbump --minor
        bumped v0.1.0 -> v0.2.0
        
        $ gtbump --major
        bumped v0.2.0 -> v1.2.0
        
        # delete the last tag
        $ gtbump --delete-last
        deleted v1.2.0
        ```
        
        Check `gtbump --help` for more options.
        
        Licensed under the MIT license.
        
Platform: UNKNOWN
Classifier: Topic :: Software Development :: Version Control
Classifier: Topic :: Software Development :: Version Control :: Git
Classifier: Topic :: Software Development :: Build Tools
Description-Content-Type: text/markdown
