summaryrefslogtreecommitdiffstats
path: root/.bumpversion.toml
diff options
context:
space:
mode:
authoranoduck <9925396+anoduck@users.noreply.github.com>2025-03-30 01:09:28 -0400
committeranoduck <9925396+anoduck@users.noreply.github.com>2025-03-30 01:09:28 -0400
commit51949ad0f0c84b36382a370d202b8d6c0aac01d2 (patch)
tree0dc4664225a5df006e1bf9f3fa983b9c9d0a34d5 /.bumpversion.toml
parentc89c3da160a8c8319bd62c146ccfbdbe60fbfde9 (diff)
docs(Added-to-docs): Added info to docs displaying each of the two developments
Diffstat (limited to '')
-rw-r--r--.bumpversion.toml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.bumpversion.toml b/.bumpversion.toml
new file mode 100644
index 0000000..ef053e9
--- /dev/null
+++ b/.bumpversion.toml
@@ -0,0 +1,21 @@
+[tool.bumpversion]
+current_version = "0.4.5"
+parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
+serialize = ["{major}.{minor}.{patch}"]
+search = "{current_version}"
+replace = "{new_version}"
+regex = false
+ignore_missing_version = false
+ignore_missing_files = false
+tag = true
+sign_tags = false
+tag_name = "v{new_version}"
+tag_message = "Bump version: {current_version} → {new_version}"
+allow_dirty = true
+commit = false
+message = "Bump version: {current_version} → {new_version}"
+moveable_tags = []
+commit_args = "--no-verify"
+setup_hooks = []
+pre_commit_hooks = []
+post_commit_hooks = []