{"id":28556837,"url":"https://github.com/thegeeklab/tag-sv","last_synced_at":"2026-04-29T10:07:17.413Z","repository":{"id":267353877,"uuid":"900973220","full_name":"thegeeklab/tag-sv","owner":"thegeeklab","description":"Create tags from SemVer version string","archived":false,"fork":false,"pushed_at":"2026-04-22T09:03:47.000Z","size":181,"stargazers_count":0,"open_issues_count":5,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-22T11:12:47.360Z","etag":null,"topics":["cli","git","tools"],"latest_commit_sha":null,"homepage":null,"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/thegeeklab.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-12-09T20:08:37.000Z","updated_at":"2026-04-09T06:40:09.000Z","dependencies_parsed_at":null,"dependency_job_id":"096e1c0c-fb8d-4066-a182-42a6a65cea8b","html_url":"https://github.com/thegeeklab/tag-sv","commit_stats":null,"previous_names":["thegeeklab/tag-sv"],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/thegeeklab/tag-sv","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thegeeklab%2Ftag-sv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thegeeklab%2Ftag-sv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thegeeklab%2Ftag-sv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thegeeklab%2Ftag-sv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thegeeklab","download_url":"https://codeload.github.com/thegeeklab/tag-sv/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thegeeklab%2Ftag-sv/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32420429,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T06:29:02.080Z","status":"ssl_error","status_checked_at":"2026-04-29T06:29:00.631Z","response_time":110,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["cli","git","tools"],"created_at":"2025-06-10T07:08:10.670Z","updated_at":"2026-04-29T10:07:17.409Z","avatar_url":"https://github.com/thegeeklab.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# tag-sv\n\nCreate tags from SemVer version string\n\n[![Build Status](https://ci.thegeeklab.de/api/badges/thegeeklab/tag-sv/status.svg)](https://ci.thegeeklab.de/repos/thegeeklab/tag-sv)\n[![Go Report Card](https://goreportcard.com/badge/github.com/thegeeklab/tag-sv)](https://goreportcard.com/report/github.com/thegeeklab/tag-sv)\n[![GitHub contributors](https://img.shields.io/github/contributors/thegeeklab/tag-sv)](https://github.com/thegeeklab/tag-sv/graphs/contributors)\n[![License: MIT](https://img.shields.io/github/license/thegeeklab/tag-sv)](https://github.com/thegeeklab/tag-sv/blob/main/LICENSE)\n\nSimple tool to create a list of tags from a given SemVer version string.\n\n## Installation\n\nPrebuilt multiarch binaries are available for Linux only.\n\n```Shell\ncurl -SsfL https://github.com/thegeeklab/tag-sv/releases/latest/download/tag-sv-linux-amd64 -o /usr/local/bin/tag-sv\nchmod +x /usr/local/bin/tag-sv\n```\n\n## Build\n\nBuild the binary from source with the following command:\n\n```Shell\nmake build\n```\n\n## Usage\n\n```Shell\n$ tag-sv --help\nNAME:\n   tag-sv - Create tags from SemVer version string\n\nUSAGE:\n   tag-sv [global options] command [command options] VERSION\n\nCOMMANDS:\n   help, h  Shows a list of commands or help for one command\n\nGLOBAL OPTIONS:\n   --output-file value  path to write the tags output (default: stdout) [$TAG_SV_OUTPUT_FILE]\n   --suffix value       add a suffix to all tags [$TAG_SV_SUFFIX]\n   --suffix-strict      only output tags with suffixes when suffix is set (default: false) [$TAG_SV_SUFFIX_STRICT]\n   --extra-tags value   additional tags to include, comma-separated [$TAG_SV_EXTRA_TAGS]\n   --force-latest       always include 'latest' tag in output (default: false) [$TAG_SV_FORCE_LATEST]\n   --ignore-pre         ignore pre-release and always get the full tag list (default: false) [$TAG_SV_IGNORE_PRERELEASE]\n   --help, -h           show help\n```\n\n## Examples\n\n```Shell\n$ tag-sv \"1.0.1\"\n# 1.0.1,1.0,1\n\n$ tag-sv \"0.1.0\"\n# 0.1.0, 0.1\n\n## 'v' prefixes e.g. from git tags will be removed\n$ tag-sv \"v1.0.1\"\n# 1.0.1,1.0,1\n\n## unsufficient semver version strings will be tried to convert automatically\n## if conversion doesn't work return 'latest'\n$ tag-sv \"1.0\"\n# 1.0.0,1.0,1\n\n$ tag-sv \"1.0.0-beta\"\n# 1.0.0-beta\n\n## ignore prerelease to always get a full list of tags\n$ tag-sv --ignore-pre \"1.0.0-beta\"\n# 1.0.0-beta,1.0.0,1.0,1\n\n$ tag-sv --suffix amd64 \"1.0.0\"\n# 1.0.0,1.0,1,1.0.0-amd64,1.0-amd64,1-amd64\n\n$ tag-sv --suffix amd64 --suffix-strict \"1.0.0\"\n# 1.0.0-amd64,1.0-amd64,1-amd64\n\n$ tag-sv --extra-tags extra1,extra2 \"1.0.0\"\n# 1.0.0,1.0,1,extra1,extra2\n```\n\n## Contributors\n\nSpecial thanks to all [contributors](https://github.com/thegeeklab/tag-sv/graphs/contributors). If you would like to contribute, please see the [instructions](https://github.com/thegeeklab/tag-sv/blob/main/CONTRIBUTING.md).\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](https://github.com/thegeeklab/tag-sv/blob/main/LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthegeeklab%2Ftag-sv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthegeeklab%2Ftag-sv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthegeeklab%2Ftag-sv/lists"}