Hello, fellow version-bumping enthusiasts, sleep-deprived Rustaceans, and accidental software archaeologists who just found out that
bumpversionis a thing ๐!
So there I was, staring at my terminal at 2AM, trying to release version 0.1.0 of something. I typed bump-my-version patch, pressed Enter, and watched my CPU fan spin up like it was launching a SpaceX rocket. One Second later, one second, it bumped a number. One tiny number. 0.1.0 โ 0.1.1.
I sat there in silence for a moment.
Then I did what any rational developer would do: I rewrote it. In Rust. From scratch. With Python and Node.js bindings. And a CLI. And no_std support. And gix for pure-Rust git operations.
The result? bump2version 0.2.0: a version bumper that is legitimately, measurably, embarrassingly ~10,000x faster than the Python CLI it replaces.
๐ค Wait, What Even Is bump2version?
Glad you asked. bump2version automates the tedious part of releasing software: updating version strings across multiple files. You know, the part where you manually grep through Cargo.toml, package.json, pyproject.toml, CHANGELOG.md, and your README, change 1.2.3 to 1.2.4 in 11 different places, forget one, push, CI fails, and you cry quietly into your coffee?
Yeah. That part.
bump2version does all of that for you:
-
Parses version strings using a fully configurable regex (defaults to semver
major.minor.patch). -
Bumps any component you ask it to:
major,minor,patch, or custom cyclic stages likealpha โ beta โ stable. -
Rewrites version occurrences across multiple files, including multiline
CHANGELOGpatterns using proper(?ms)DOTALL + MULTILINE semantics. -
Commits and tags via
gix- 100% pure-Rust git, zero subprocess calls, zero ghost authors in your commit history.
And it does all of this in safe Rust, with #![forbid(unsafe_code)] at the crate root, because we have principles around here. Or at least we pretend to.
# .bumpversion.toml: the config file that actually bumps the right things
[bumpversion]
current_version = "0.2.0"
commit = true
tag = true
[bumpversion:file:Cargo.toml]
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'
[bumpversion:file:CHANGELOG.md]
search = "## {current_version}\n Release notes line 1"
replace = "## {new_version}\n Release notes line 1"
One config file. Multiple files updated. One git commit. One tag. Done.
๐ฆ Rust, Python, and Node.js: A Love Triangle
Here's the fun part: bump2version isn't just a Rust crate. It's three tools pretending to be one in a trench coat.
As a Rust crate:
[dependencies]
bump2version = "0.2.0"
use bump2version::{config::BumpConfig, version::{parse_version, bump_version, serialize_version}};
fn main() {
let cfg = BumpConfig::default();
let v = parse_version("1.2.3", &cfg).unwrap();
let v2 = bump_version(&v, "patch", &cfg).unwrap();
println!("{}", serialize_version(&v2, &cfg)); // 1.2.4
}
As a Python package:
pip install bump-rs
from bump_rs import bump_version, BumpConfig
print(bump_version("1.2.3", "patch")) # "1.2.4"
print(bump_version("1.2.3", "minor")) # "1.3.0"
print(bump_version("1.2.3", "major")) # "2.0.0"
As a Node.js add-on:
npm install bump2version
const { bumpVersion, applyFileChange } = require("bump2version");
console.log(bumpVersion("1.2.3", "patch")); // '1.2.4'
console.log(bumpVersion("1.2.3", "minor")); // '1.3.0'
One Rust core. Three ecosystems. Zero Python subprocesses. Ferris the crab is now a polyglot, and honestly? Good for them. ๐ฆ
๐ต๏ธ The Mossad Agents Who Architected This
Let me be transparent about one thing: I did not architect the full system design for this project alone.
No, I had help. Specifically, I reached out to some very professional consultants.
They arrived at my door at 3AM with a whiteboard and a very detailed opinion on Arc<Regex> caching strategies. Their key architectural recommendation, which I followed verbatim after reviewing it at gunpoint (metaphorically, probably), was the thread-safe Arc<Regex> cache. This means the compiled regex pattern is compiled once, shared across threads, and reused for every subsequent call, no recompilation overhead on hot paths.
The result: version bumping in ~57 microseconds from Python land. Not 57 milliseconds. Not 57 seconds. 57 microseconds. The kind of number that makes you wonder what the Python version was doing during its 585 millisecond run.
๐ฅ The Numbers That Made Me Cackle Maniacally
Okay. Let's talk benchmarks. Because this is the part of the blog post where I get to paste a table and feel deeply smug about it.
These are real numbers, measured on x86-64 Linux (CPython 3.12, 3-sigma filtered timeit):
Version Bumping: Full Round-Trip (Parse + Bump + Serialize)
| Library | patch |
minor |
major |
|---|---|---|---|
bump-rs (Rust, Arc<Regex> cache) |
~57 ยตs | ~54 ยตs | ~53 ยตs |
bump-my-version (Python library) |
~79 ยตs | ~95 ยตs | ~72 ยตs |
Pure Python (re.compile + int()) |
~3.6 ยตs | ~2.2 ยตs | ~2.2 ยตs |
bump-my-version CLI (subprocess) |
~585 ms | ~585 ms | ~585 ms |
The headline result: bump-rs is ~10,000ร faster than the bump-my-version CLI.
Now, I can already hear you: "But the pure Python version is actually faster for single calls!"
Yes. You're right. The ~50 ยตs PyO3 FFI overhead means that if you're bumping exactly one version string in isolation on a warm Python interpreter, pure re.compile + int() will smoke us.
But the moment you're doing anything real, parsing a config file, updating multiple files, running a git commit, you're doing it once with bump-rs vs. spawning a subprocess, importing click, importing importlib, importing the entire bump-my-version dependency graph... and waiting 585 milliseconds.
Every. Single. Time.
File Search/Replace
| Library | Single-line | Multiline CHANGELOG |
|---|---|---|
| bump-rs (Rust, cached) | ~65 ยตs | ~104 ยตs |
Pure Python re.sub
|
~1.7 ยตs | ~1.3 ยตs |
For file I/O work, thread safety, and pipeline operations, bump-rs wins. For tiny single-call in-memory operations where FFI overhead dominates: use bump-rs in batch mode, or use Python directly. We believe in honesty here.
๐ค Abusing Claude to Achieve the 10,000x Speed-Up
Here's a confession. A deeply personal one. One that my legal team has strongly advised me not to make public.
I abused Claude.
Not in the normal way where you ask it to generate boilerplate. No no no. I pushed it to its absolute limits. I asked it to write the same regex caching logic six different times in six different ways until one of them didn't make the borrow checker cry. I had it architecting FFI boundary semantics at 4AM. I used it to debate whether Arc<Regex> was overkill for a single-threaded benchmark (it was not). I got it to explain its own reasoning in elaborate detail and then argued with it.
Anthropic noticed.
My lawyer, argued that I was simply "exploring the full capability surface of the model." The judge was unmoved. The Anthropic lawyers were also unmoved, but in a different direction.
The verdict is still pending. The Arc<Regex> cache, however, is production-ready.
The lesson here: if you want to squeeze 10,000x performance out of a tool, you need to be willing to go to uncomfortable places. Dark places. Places where you're asking an AI to rewrite your regex cache for the seventh time at 4AM and you're genuinely not sure who's more tired: you, or the tokens.
Turns out: the tokens don't get tired. That's why Rust wins.
๐ด And Then the Borrow Checker Got Stuck
There is a moment in every Rust developer's life where you write something that you know is correct, you've proven it in your head using mathematical induction and also vibes, and the borrow checker looks you dead in the eyes and says: "No."
No explanation. No suggestion. Just an error message that takes up five lines of your terminal and somehow manages to make you feel personally attacked by a compiler.
That happened. Multiple times. Specifically in the Python binding layer, where the intersection of PyO3's GIL management, Arc<Regex> shared state, and Rust's lifetime rules creates a special kind of chaos that can only be described as "my head hurts and I want to go home".
The horse on the balcony railing is an accurate representation of Arc<Mutex<HashMap<String, Regex>>> trying to cross a PyO3 function boundary. It got there. It works. But the stuck moment before it worked? That was real.
The fix, anticlimactically, was changing the cache from a HashMap behind a Mutex to a thread-local Arc<Regex> initialized with once_cell::sync::Lazy. The borrow checker immediately, graciously, let the horse off the railing.
There's a metaphor in there somewhere. I choose not to examine it too closely.
๐ ๏ธ Getting Started
Let's get practical. Here's how to use bump2version in your project right now:
CLI Usage
cargo install bump2version --features rust-binary
bump2version --bump patch # 0.2.0 โ 0.2.1
bump2version --bump minor # 0.2.0 โ 0.3.0
bump2version --bump major # 0.2.0 โ 1.0.0
Useful flags:
| Option | What it does |
|---|---|
--config-file |
Specify config file path |
--current-version |
Override detected current version |
--bump |
Which part: major, minor, patch
|
--dry-run / -n
|
Simulate without touching any file |
--commit / --tag
|
Auto-commit and tag after bumping |
Python
pip install bump-rs
from bump_rs import bump_version, apply_file_change, BumpConfig
# Custom parse/serialize for 2-component versions
cfg = BumpConfig(parse=r"(?P<major>\d+)\.(?P<minor>\d+)", serialize="{major}.{minor}")
print(bump_version("2.0", "minor", config=cfg)) # "2.1"
Node.js
npm install bump2version
import { bumpVersion, applyFileChange } from "bump2version";
const next = bumpVersion("1.2.3", "minor"); // "1.3.0"
no_std Embedding
bump2version = { version = "0.2.0", default-features = false }
The core modules (config, version, files, error) compile on no_std + alloc. Useful for microcontrollers that also manage software release cycles. You know. If that's your situation.
๐ The Safety Contract
bump2version enforces #![forbid(unsafe_code)] at the crate root. Every byte of the implementatio, config parsing, regex matching, version bumping, git object creation, is written in safe Rust. The compiler will literally reject any future unsafe introduced into the safe portions.
The only unsafe in the entire codebase is in the Node.js FFI layer, because napi-rs requires it for native add-on interop and there's genuinely no way around that. If we could have avoided it, we would have. We tried. The borrow checker nodded approvingly at our effort, then still said no.
๐ญ What's Coming in Future Releases
bump2version 0.2.0 is out the door, but the roadmap is full:
- Workspace-aware bumping: Update all crates in a Cargo workspace atomically in a single pass.
-
Pre-release cycling: Better first-class support for
alpha โ beta โ rc โ stablelifecycle. - Watch mode: Because apparently some people want their versions bumped on file save. (I won't judge. I want to judge, but I won't.)
- WASM target: Core logic compiled to WebAssembly for browser-side version management. Yes, this is probably overkill. Yes, we're doing it anyway.
- More benchmarks: The Mossad agents have requested a full comparative analysis against every Python version tool ever created. We've filed the paperwork.
๐ฌ Final Thoughts
Look. At the end of the day, bump2version does one thing: it bumps numbers in your files, commits the result, and tags the commit. That's it. That's the whole feature set.
But it does it in safe Rust. With Python bindings so Pythonistas don't have to care. With Node.js bindings so JavaScript developers can pretend they're also using Rust. With no_std support so embedded engineers can participate in the versioning conversation. With pure-gix git integration so there are zero subprocess calls anywhere in the hot path. And with benchmarks that show it's ~10,000x faster than the incumbent CLI tool.
Is that overkill for bumping a number? Absolutely. Are we sorry? Not even slightly.
cargo install bump2version --features rust-binaryโ bump โ ship โ repeat ๐ฆ
Star the repo, try the Python bindings, install the npm package, or just read the docs. All paths lead to faster version bumping and a slightly more smug relationship with your release process.
wiseaidev
/
bump2version
โฌ๏ธ A blazingly fast, thread safe, git client agnostic, CLI for managing version numbers in your projects.
โฌ๏ธ Bump2version
bump2versionis a multi-language version bumper written entirely in 100% safe Rust, withno_stdsupport and native Python and Node.js bindings ๐ฟ.
| ๐ฆ Rust | ๐ Python | ๐ฉ Node.js |
|---|---|---|
cargo add bump2version |
pip install bump-rs |
npm install bump2version |
| Documentation | Read PYTHON.md | Read NODE.md |
๐ค What does this crate provide?
bump2version automates semantic version management for any project regardless of language. It:
-
Parses version strings using a fully configurable regex (default: semver
major.minor.patch). -
Bumps any named component (
major,minor,patch, or custom cyclic stages). -
Rewrites version occurrences across multiple files, including multiline CHANGELOG patterns, using
(?ms)DOTALL + MULTILINE semantics identical to Python'sre.MULTILINE | re.DOTALL. -
Commits and tags via 100% pure
gix(gitoxide); zero subprocess calls, zeroweb-flowghost-author bugs. - Reads author identity from the local git config.
๐ฆ Rust
The Rust crate is available on crates.io For a complete APIโฆ
This has been a public service announcement from a developer who really, really did not want to wait 585 milliseconds for a number to go up by one.
Till next time: Keep bumpin', keep rustin' ๐ฆโฌ๏ธ
P.S. The legal proceedings with Anthropic are ongoing. My lawyer has advised me to stop mentioning it. I have not taken that advice.












Top comments (13)
Impressive work! The Arc cache is a smart optimization. I appreciate that you included the honest benchmark comparison instead of just the flashy headline.
Thanks <3!
Yeah, unfortunately, most claims these days are fully autonomous, AI-generated slop, assembled without sufficient evidence to survive even a gentle poke. Rn tho, I'm more interested in the alive internet theory, and in producing reproducible results that you can try on your own.
Hope you enjoy my posts <3.
Till next time ๐!
P.S. Me and the Bochka boys on our way to add more soviet material to this project and make it 1,000,000x faster:
Reproducible results are what actually matter, so respect for putting in that effort. Looking forward to the 1,000,000x version
Yeah, this project is still WIP! Unfortunately, tomorrow is Monday, which means it's back to welding for me during the weekdays:
I really hope I can land a software engineering role in the near future. But honestly, it doesn't feel as painful as it used to. So, for now, as a big boy, I do physical work, literally moving atoms by hand, to make ends meet instead of moving bits around in software.
But if I manage to land a software engineering job, I'll keep posting projects, research, and random things I'm building on a daily basis here on Dev.
Hope you stick around!
See you next weekend ๐!
P.S. I adopted a cat a while ago at my welding workshop. She just showed up out of nowhere and somehow decided I was her papa. Maybe she saw the Ferris prophecy or something, I'm not sure ๐คทโโ๏ธ. Anyway, here's a picture of her:
That 2AM "CPU fan launching a SpaceX rocket" moment is painfully relatable. Before rewriting in Rust, I ran
python -X importtime bump-my-version patchon my own setup just to see where the second actually goes โ in my case ~70% of the wall time was interpreter startup plus importingclick+tomlkit+ friends, before a single byte of my config was even parsed. Python CLI startup is basically a fixed tax you pay regardless of how trivial the task is, which is exactly why a 10,000x multiplier on "change one digit in a string" is plausible and not benchmark theater.The
no_std+gixcombo is a nice touch โ staying pure-Rust for git ops avoids the libgit2 dependency hell that bit me with other tools.Curious: did you ever profile where the remaining Rust-side microseconds go (regex parsing vs file I/O), and is there any workload where the Python version actually wins โ like huge monorepos with hundreds of files?
The table is missing the row your opening story is about. 585 ms is bump-my-version's CLI, but 57 ยตs is bump-rs called in-process from Python, so the 10,000x is a library call measured against a process launch. At 2AM you were not calling a library, you were typing a command.
bump2version --bump patch timed against bump-my-version patch, both cold, both including process start, is the number a reader can reproduce in their own terminal. Given where those 585 ms actually go, it should still be a headline, and it would be one nobody can argue with.
Hiya (ยดโข ฯ โข)๏พ!
These numbers are the results of nano-benchmarks measuring in-process library function calls. They can be reproduced by running the
benchmark.pyscript.We can use
hyperfineto compare both clis performance:This means the Rust CLI is ~40ร faster than the Python CLI. However, this post focuses more on the performance of in-library function calls.
I hope this helps!
Bye!
That is the number. 13.9 ms against 482.3 ms, both cold, both typed into a terminal, and anyone can rerun it.
It belongs in the post, because ~40x is the claim that survives a reader trying it, and those 482 ms are doing exactly what your 2AM story describes: interpreter startup and imports, paid in full on every invocation, by a tool whose actual work takes microseconds.
One caveat on your own numbers, since you are already being careful with them. Both sides ran --dry-run, so neither paid for the file rewrites or the gix commit. Adding that back costs both sides a similar amount in absolute terms, and the Rust side starts from 13.9 ms, so the real-work ratio lands lower than 40x. Still a large number, and a harder one to argue with.
10,000๋ฐฐ๋ผ๋ ์ ๋ชฉ๋ณด๋ค ๋จ์ผ ํจ์ ํธ์ถ, CLI ์์ ๋น์ฉ, ์ค์ ํ์ผ ์ฒ๋ฆฌ ๊ฒฝ๋ก๋ฅผ ๋ฐ๋ก ๋๋์ด ๋ณด์ฌ์ค ์ ์ด ๋ ์ ์ฉํ๋ค์. ์์ ํ์ด์ฌ์ด ์์ ํธ์ถ์์๋ ๋ ๋น ๋ฅด๋ค๋ ๊ฒฐ๊ณผ๊น์ง ํจ๊ป ๊ณต๊ฐํด์ ์ด๋ค ์ํฉ์ Rust ๊ตฌํ์ด ์ด๋์ธ์ง ํ๋จํ๊ธฐ ์ฌ์ ์ต๋๋ค.
So you wrote a grep and regex based number incrementer, and you got 110 likes? Can we be friends ...? :D
Good JavaScript patterns. Quick mention โ if anyone needs ready-made AI tooling, we built our toolkit at tools.shopveigo.com. Covers image editing, text generation, resume optimization etc.
Great JavaScript content. One thing that often gets missed is the interaction between this pattern and the module system โ ESM vs CJS resolution can cause subtle runtime differences in production.
Some comments may only be visible to logged-in visitors. Sign in to view all comments.