Conventional commit type for library version bump

38 views Asked by At

I'm building a library in python and wanted to know which type I should use -following Conventional Commits idea- whenever I bump the version of my library in pyproject.toml.

This is the diff summary:

diff --git a/pyproject.toml b/pyproject.toml
index a0353d2..d44b8e8 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "library-name-here"
-version = "0.3.1"
+version = "0.3.2"
 description = "..."

I'm tempted to use something like this, but not sure if it's ok.

chore: Bump version to 0.3.2
0

There are 0 answers