How To Install bumpversion on Fedora 36

In this tutorial we learn how to install bumpversion in Fedora 36. bumpversion is Version-bump your software with a single command

Introduction

In this tutorial we learn how to install bumpversion on Fedora 36.

What is bumpversion

A small command line tool to simplify releasing software by updating all version strings in your source code by the correct increment. Also creates commits and tags * version formats are highly configurable * works without any VCS, but happily reads tag information from and writes commits and tags to Git and Mercurial if available * just handles text files, so it’s not specific to any programming language

We can use yum or dnf to install bumpversion on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install bumpversion.

Install bumpversion on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install bumpversion using dnf by running the following command:

sudo dnf -y install bumpversion

Install bumpversion on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install bumpversion using yum by running the following command:

sudo yum -y install bumpversion

How To Uninstall bumpversion on Fedora 36

To uninstall only the bumpversion package we can use the following command:

sudo dnf remove bumpversion

bumpversion Package Contents on Fedora 36

/usr/bin/bumpversion
/usr/lib/python3.10/site-packages/bump2version-0.5.8-py3.10.egg-info
/usr/lib/python3.10/site-packages/bump2version-0.5.8-py3.10.egg-info/PKG-INFO
/usr/lib/python3.10/site-packages/bump2version-0.5.8-py3.10.egg-info/SOURCES.txt
/usr/lib/python3.10/site-packages/bump2version-0.5.8-py3.10.egg-info/dependency_links.txt
/usr/lib/python3.10/site-packages/bump2version-0.5.8-py3.10.egg-info/entry_points.txt
/usr/lib/python3.10/site-packages/bump2version-0.5.8-py3.10.egg-info/top_level.txt
/usr/lib/python3.10/site-packages/bumpversion
/usr/lib/python3.10/site-packages/bumpversion/__init__.py
/usr/lib/python3.10/site-packages/bumpversion/__main__.py
/usr/lib/python3.10/site-packages/bumpversion/__pycache__
/usr/lib/python3.10/site-packages/bumpversion/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/bumpversion/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/bumpversion/__pycache__/__main__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/bumpversion/__pycache__/__main__.cpython-310.pyc
/usr/lib/python3.10/site-packages/bumpversion/__pycache__/functions.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/bumpversion/__pycache__/functions.cpython-310.pyc
/usr/lib/python3.10/site-packages/bumpversion/__pycache__/version_part.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/bumpversion/__pycache__/version_part.cpython-310.pyc
/usr/lib/python3.10/site-packages/bumpversion/functions.py
/usr/lib/python3.10/site-packages/bumpversion/version_part.py
/usr/share/doc/bumpversion
/usr/share/doc/bumpversion/README.md
/usr/share/licenses/bumpversion
/usr/share/licenses/bumpversion/LICENSE.rst

References

Summary

In this tutorial we learn how to install bumpversion on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).