{"id":40185225,"url":"https://github.com/iwishiwasaneagle/git-release","last_synced_at":"2026-01-19T19:03:30.941Z","repository":{"id":37987122,"uuid":"483578834","full_name":"iwishiwasaneagle/git-release","owner":"iwishiwasaneagle","description":"Easily generate releases using git-cliff and github actions","archived":false,"fork":false,"pushed_at":"2025-08-11T20:49:07.000Z","size":165,"stargazers_count":0,"open_issues_count":9,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-29T18:42:17.605Z","etag":null,"topics":["automate","git","git-plugin","releases"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/iwishiwasaneagle.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","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":"2022-04-20T08:54:45.000Z","updated_at":"2022-04-24T16:41:51.000Z","dependencies_parsed_at":"2025-08-11T22:22:31.302Z","dependency_job_id":null,"html_url":"https://github.com/iwishiwasaneagle/git-release","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/iwishiwasaneagle/git-release","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iwishiwasaneagle%2Fgit-release","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iwishiwasaneagle%2Fgit-release/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iwishiwasaneagle%2Fgit-release/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iwishiwasaneagle%2Fgit-release/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iwishiwasaneagle","download_url":"https://codeload.github.com/iwishiwasaneagle/git-release/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iwishiwasaneagle%2Fgit-release/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28580687,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T18:52:07.356Z","status":"ssl_error","status_checked_at":"2026-01-19T18:49:52.190Z","response_time":67,"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":["automate","git","git-plugin","releases"],"created_at":"2026-01-19T19:03:30.151Z","updated_at":"2026-01-19T19:03:30.936Z","avatar_url":"https://github.com/iwishiwasaneagle.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# git-release\n\n[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/iwishiwasaneagle/git-release/master.svg)](https://results.pre-commit.ci/latest/github/iwishiwasaneagle/git-release/master)\n[![CI](https://github.com/iwishiwasaneagle/git-release/actions/workflows/CI.yml/badge.svg)](https://github.com/iwishiwasaneagle/git-release/actions/workflows/CI.yml)\n[![License](https://img.shields.io/github/license/iwishiwasaneagle/git-release)](https://github.com/iwishiwasaneagle/git-release/blob/master/LICENSE.txt)\n![OS: Linux](https://img.shields.io/badge/Supported%20OS-Linux,%20Mac-informational)\n[![PyPI - Downloads](https://img.shields.io/pypi/dm/git-release)](https://pypi.org/project/git-release/)\n[![PyPI](https://img.shields.io/pypi/v/git-release)](https://pypi.org/project/git-release/)\n[![codecov](https://codecov.io/gh/iwishiwasaneagle/git-release/branch/master/graph/badge.svg?token=AY8CB7ZLM1)](https://codecov.io/gh/iwishiwasaneagle/git-release)\n\nEasily generate tag-based releases. Uses the powerful [`git-cliff`](https://github.com/orhun/git-cliff) to generate changelogs. These can then be leveraged via [github actions](https://github.com/iwishiwasaneagle/git-release/blob/master/.github/workflows/CD.yml)\n\n## Installation\n\n```bash\n# Install dependencies\ncargo install git-cliff\n\n# Install git-release\npip install git-release\n```\n\n## Usage\n\n```txt\nusage: git-release [-h] [--comment COMMENT] [--remote REMOTE] [-v] [--semver SEMVER] [--major | --minor | --patch | --no-inc]\n\noptional arguments:\n  -h, --help            show this help message and exit\n  --comment COMMENT, -c COMMENT\n                        A comment to describe the release. Synonymous to a tag message. Defaults to the generated changelog.\n  --remote REMOTE, -r REMOTE\n                        The repository remote (defaults to 'origin')\n  -v, --verbose         NOT IMPLEMENTED YET\n\nSemantic Version:\n  Options to manipulate the version. If --semver is not passed, git-release uses the most recent tag.\n\n  --semver SEMVER       Custom semantic version. Use --no-inc to use as is.\n  --major, -M           Increment the major version by 1 (resets minor and patch)\n  --minor, -m           Increment the minor version by 1 (resets patch)\n  --patch, -P           Increment the patch version by 1 (default behaviour)\n  --no-inc              Don't increment anything\n```\n\n## Contributing\n\nEnsure that `pre-commit` is installed and working. Otherwise the pre-commit CI will most likely fail.\n\n```bash\n# Install and setup pre-commit\npip install pre-commit\npre-commit install --install-hooks\n```\n\n## Repos that have used git-release\n\n- [iwishiwasaneagle/jsim](https://github.com/iwishiwasaneagle/jsim)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiwishiwasaneagle%2Fgit-release","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiwishiwasaneagle%2Fgit-release","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiwishiwasaneagle%2Fgit-release/lists"}