{"id":18872787,"url":"https://github.com/survivorbat/go-bumpy","last_synced_at":"2026-04-18T12:04:12.580Z","repository":{"id":65536835,"uuid":"593583304","full_name":"survivorbat/go-bumpy","owner":"survivorbat","description":"Go-bumpy is a simple tool for bumping the version of your go project based on Semantic Versioning. Not only does it look at existing tags in your repository, it also reads the version from your go.mod file to determine what the major version of your project is.","archived":false,"fork":false,"pushed_at":"2025-05-01T09:53:16.000Z","size":48,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-30T19:37:13.977Z","etag":null,"topics":["bump","bumpy","git","go","gobumpy","golang","gomod","mod","semantic","tag","tagging","tags","tool","version","versions"],"latest_commit_sha":null,"homepage":"https://pkg.go.dev/github.com/survivorbat/go-bumpy","language":"Go","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/survivorbat.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":"2023-01-26T11:23:56.000Z","updated_at":"2025-05-01T09:53:19.000Z","dependencies_parsed_at":"2024-06-21T08:47:31.196Z","dependency_job_id":"a1d1bd5a-2df9-4727-8a43-d27d2615036b","html_url":"https://github.com/survivorbat/go-bumpy","commit_stats":{"total_commits":20,"total_committers":3,"mean_commits":6.666666666666667,"dds":"0.19999999999999996","last_synced_commit":"4d3eee9e474b36b1bcbd7a00b4fd0921c46934b1"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/survivorbat/go-bumpy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/survivorbat%2Fgo-bumpy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/survivorbat%2Fgo-bumpy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/survivorbat%2Fgo-bumpy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/survivorbat%2Fgo-bumpy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/survivorbat","download_url":"https://codeload.github.com/survivorbat/go-bumpy/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/survivorbat%2Fgo-bumpy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31967994,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"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":["bump","bumpy","git","go","gobumpy","golang","gomod","mod","semantic","tag","tagging","tags","tool","version","versions"],"created_at":"2024-11-08T05:32:16.518Z","updated_at":"2026-04-18T12:04:11.649Z","avatar_url":"https://github.com/survivorbat.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🐫 Go Bumpy\n\n[![Go package](https://github.com/survivorbat/go-bumpy/actions/workflows/test.yaml/badge.svg)](https://github.com/survivorbat/go-bumpy/actions/workflows/test.yaml)\n![GitHub](https://img.shields.io/github/license/survivorbat/go-bumpy)\n![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/survivorbat/go-bumpy)\n\nGo-bumpy is a simple tool for bumping the version of your go project based on [Semantic Versioning](https://semver.org/).\nNot only does it look at existing tags in your repository, it also\nreads the version from your `go.mod` file to determine what the major version of your project is.\n\nIt is also capable of pushing the new tag to your remote repository.\n\n## ⬇️ Installation\n\n```bash\ngo install github.com/survivorbat/go-bumpy/cmd/bumpy@latest`\n```\n\nOr check out the [releases](https://github.com/survivorbat/go-bumpy/releases).\n\n## 📋 Usage\n\n```bash\nbumpy [-minor] [-prefix=\"something/\"] [-module=\"./src\"] [-push=\"origin\"] \u003crepository directory\u003e\n```\n\nIt will output the new tag name to stdout and logging to stderr.\n\n### Options\n\n- `-prefix` Prefix the result tag and strip the prefix from the existing tags when searching, if set, skips any tags without this prefix\n- `-minor` Bump the minor version instead of the patch version\n- `-push` Push the new tag to the specified remote. If not specified, the tag will not be pushed.\n- `-module` If your `go.mod` is not in the root of the directory, you can specify the path here\n\n### Examples\n\n| Module Suffix | Latest Tag | Output |\n| ------------- | ---------- | ------ |\n| None          | None       | v0.0.0 |\n| None          | v2.5.0     | v2.5.1 |\n| v3            | None       | v3.0.0 |\n| v3            | v3.2.0     | v3.2.1 |\n| v3            | v5.4.3     | v3.0.0 |\n\n## 🔭 Plans\n\nNone yet\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsurvivorbat%2Fgo-bumpy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsurvivorbat%2Fgo-bumpy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsurvivorbat%2Fgo-bumpy/lists"}