{"id":17345330,"url":"https://github.com/binbiubiubiu/git-semver-tags","last_synced_at":"2025-04-13T19:50:45.978Z","repository":{"id":62283576,"uuid":"559365051","full_name":"Binbiubiubiu/git-semver-tags","owner":"Binbiubiubiu","description":"Get all git semver tags of your repository in reverse chronological order","archived":false,"fork":false,"pushed_at":"2023-03-02T12:36:30.000Z","size":77,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-04-12T12:11:44.646Z","etag":null,"topics":["cli","git","git-tag","rust"],"latest_commit_sha":null,"homepage":"https://crates.io/crates/git-semver-tags","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/Binbiubiubiu.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":"Binbiubiubiu"}},"created_at":"2022-10-29T22:08:52.000Z","updated_at":"2025-02-08T09:04:22.000Z","dependencies_parsed_at":"2024-12-06T02:51:28.025Z","dependency_job_id":null,"html_url":"https://github.com/Binbiubiubiu/git-semver-tags","commit_stats":{"total_commits":104,"total_committers":1,"mean_commits":104.0,"dds":0.0,"last_synced_commit":"ffccf865f4e0ce8ab31a816a9970ad3d1e25c010"},"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Binbiubiubiu%2Fgit-semver-tags","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Binbiubiubiu%2Fgit-semver-tags/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Binbiubiubiu%2Fgit-semver-tags/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Binbiubiubiu%2Fgit-semver-tags/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Binbiubiubiu","download_url":"https://codeload.github.com/Binbiubiubiu/git-semver-tags/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248773684,"owners_count":21159516,"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","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","git-tag","rust"],"created_at":"2024-10-15T16:30:29.243Z","updated_at":"2025-04-13T19:50:45.954Z","avatar_url":"https://github.com/Binbiubiubiu.png","language":"Rust","funding_links":["https://github.com/sponsors/Binbiubiubiu"],"categories":[],"sub_categories":[],"readme":" # git-semver-tags\n\n ![Crates.io](https://img.shields.io/crates/v/git-semver-tags) ![Crates.io](https://img.shields.io/crates/d/git-semver-tags) ![Crates.io](https://img.shields.io/crates/l/git-semver-tags) [![CI](https://github.com/Binbiubiubiu/git-semver-tags/actions/workflows/CI.yml/badge.svg)](https://github.com/Binbiubiubiu/git-semver-tags/actions/workflows/CI.yml) [![codecov](https://codecov.io/gh/Binbiubiubiu/git-semver-tags/branch/main/graph/badge.svg?token=YTIKDKKKBV)](https://codecov.io/gh/Binbiubiubiu/git-semver-tags)\n\n\n Get all git semver tags of your repository in reverse chronological order\n\n ## Install\n\n Run\n ``` Console\n $ cargo install git-semver-tags\n ```\n\n ### Via cargo-binstall\n\nYou can install cargo-llvm-cov using [cargo-binstall](https://github.com/ryankurte/cargo-binstall):\n\n``` Console\n$ cargo binstall git-semver-tags\n```\n\n ## Usage\n\n\n By default, it runs check. You can easily override this, though:\n\n ``` Console\n $ git-semver-tags [OPTIONS]\n ```\n\n A few examples:\n\n\n ``` Console\n # Run get all tags\n $ git-semver-tags\n\n # Run to get lerna tag\n $ git-semver-tags --lerna\n\n # Run the lerna tag to get the specified package name\n $ git-semver-tags --lerna --package \u003cpackage\u003e\n\n # Runs get tag for the specified prefix\n $ git-semver-tags --tag-prefix \u003cprefix\u003e\n\n # Run get to ignore unstable tag\n $ git-semver-tags --skip-unstable\n\n # Run get label under the specified path\n $ git-semver-tags --cwd \u003ccwd\u003e\n\n # Run upgrade self version\n $ git-semver-tags upgrade\n ```\n\n\n There's a lot more you can do! Here's a copy of the help:\n\n ``` Console\n Get all git semver tags of your repository in reverse chronological order\n\n Usage: git-semver-tags [OPTIONS] [COMMAND]\n\nCommands:\n  upgrade  upgrade self version\n  help     Print this message or the help of the given subcommand(s)\n\nOptions:\n      --lerna                parse lerna style git tags\n      --package \u003cpackage\u003e    when listing lerna style tags, filter by a package\n      --tag-prefix \u003cprefix\u003e  prefix to remove from the tags during their processing\n      --cwd \u003ccwd\u003e            the current path where the command was run\n      --skip-unstable        ignore unstable labels\n  -h, --help                 Print help\n  -V, --version              Print version\n\n ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbinbiubiubiu%2Fgit-semver-tags","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbinbiubiubiu%2Fgit-semver-tags","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbinbiubiubiu%2Fgit-semver-tags/lists"}