{"id":17623739,"url":"https://github.com/wiseaidev/bump2version","last_synced_at":"2025-10-13T13:38:33.344Z","repository":{"id":223308598,"uuid":"759834146","full_name":"wiseaidev/bump2version","owner":"wiseaidev","description":"⬆️ A blazingly fast, thread safe, git client agnostic, CLI for managing version numbers in your projects.","archived":false,"fork":false,"pushed_at":"2025-09-08T02:18:01.000Z","size":126,"stargazers_count":5,"open_issues_count":6,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-20T04:19:17.901Z","etag":null,"topics":["bump2version","bumpversion","clap","cli","regex","rust"],"latest_commit_sha":null,"homepage":"https://docs.rs/bump2version","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wiseaidev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-02-19T12:29:15.000Z","updated_at":"2025-04-09T18:15:16.000Z","dependencies_parsed_at":null,"dependency_job_id":"97a7af50-9a73-4d9e-8ac2-c1d5e3bf60b0","html_url":"https://github.com/wiseaidev/bump2version","commit_stats":null,"previous_names":["wiseaidev/bump2version"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/wiseaidev/bump2version","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiseaidev%2Fbump2version","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiseaidev%2Fbump2version/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiseaidev%2Fbump2version/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiseaidev%2Fbump2version/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wiseaidev","download_url":"https://codeload.github.com/wiseaidev/bump2version/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiseaidev%2Fbump2version/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279015349,"owners_count":26085684,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-13T02:00:06.723Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bump2version","bumpversion","clap","cli","regex","rust"],"created_at":"2024-10-22T21:42:38.946Z","updated_at":"2025-10-13T13:38:33.324Z","avatar_url":"https://github.com/wiseaidev.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ⬆️ Bump2version\n\n[![Crates.io](https://img.shields.io/crates/v/bump2version.svg)](https://crates.io/crates/bump2version)\n[![docs](https://docs.rs/bump2version/badge.svg)](https://docs.rs/bump2version/)\n[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)\n\n\u003e 🚀 **bump2version**: A command-line tool for managing version numbers in your projects.\n\n## 📖 Table of Contents\n\n- [Quick Start](#-quick-start)\n- [Configuration File](#-configuration-file)\n- [Features](#-features)\n- [Options](#-options)\n- [GitHub Repository](#-github-repository)\n- [Contributing](#-contributing)\n\n## 🚀 Quick Start\n\nGet started with the `bump2version` CLI by following these simple steps:\n\n1. Install the `bump2version` tool using Cargo:\n\n   ```bash\n   cargo install bump2version\n   ```\n\n1. Use the following options to manage version numbers and customize the behavior:\n\n   ```bash\n   bump2version --bump patch # or minor or major\n   ```\n\n## 🛠️ Configuration File\n\nTo customize the behavior of `bump2version`, you can use a configuration file named `.bumpversion.toml`. This file should be present in the root of your project. If it's not found, the cli will use default values.\n\nHere's an example `.bumpversion.toml` configuration file you can use in your project:\n\n```toml\n[bumpversion]\ncurrent_version = 0.1.0 # Specify the current version of your project, samne value as Cargo.toml version\n\n# Specify how to search for and replace the version in the 'Cargo.toml' file.\n[bumpversion:file:Cargo.toml]\nsearch = 'version = \"{current_version}\"'\nreplace = 'version = \"{new_version}\"'\n```\n\n## ✨ Features\n\n- **Incremental Versioning:** Bump major, minor, or patch versions with ease.\n- **Configurability:** Use a configuration file or command-line options to customize behavior.\n- **Git Integration:** Create commits and tags in your version control system.\n\n## 🎨 Options\n\n| Option                 | Description                                                       |\n|------------------------|-------------------------------------------------------------------|\n| `--config-file`        | Config file to read most of the variables from (default: `.bumpversion.toml`). |\n| `--current-version`    | Version that needs to be updated.                                 |\n| `--bump`               | Part of the version to be bumped (default: patch).                |\n| `--parse`              | Regex parsing the version string (default: \\d+\\.\\d+\\.\\d+).        |\n| `--serialize`          | How to format what is parsed back to a version (default: {major}.{minor}.{patch}). |\n| `--dry-run`            | Don't write any files, just pretend.                               |\n| `--new-version`        | New version that should be in the files.                           |\n| `--commit`             | Create a commit in version control (default: true).                |\n| `--tag`                | Create a tag in version control.                                   |\n| `--message`            | Commit message (default: Bump version: {current_version} → {new_version}). |\n| `file`                 | Files to change.                                                  |\n\n## 🌐 GitHub Repository\n\nYou can access the source code for this CLI tool on [GitHub](https://github.com/wiseaidev/bump2version).\n\n## 🤝 Contributing\n\nContributions and feedback are welcome! If you'd like to contribute, report an issue, or suggest an enhancement, please engage with the project on [GitHub](https://github.com/wiseaidev/bump2version). Your contributions help improve this CLI tool for the community.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwiseaidev%2Fbump2version","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwiseaidev%2Fbump2version","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwiseaidev%2Fbump2version/lists"}