{"id":16304942,"url":"https://github.com/moznion/releng.sh","last_synced_at":"2026-04-26T23:31:03.013Z","repository":{"id":145078088,"uuid":"100130427","full_name":"moznion/releng.sh","owner":"moznion","description":"Pure bash scripts for release engineering","archived":false,"fork":false,"pushed_at":"2017-08-13T12:44:03.000Z","size":16,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-11T01:15:23.751Z","etag":null,"topics":["bash","releng"],"latest_commit_sha":null,"homepage":"","language":"Perl","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/moznion.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGES","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}},"created_at":"2017-08-12T18:25:23.000Z","updated_at":"2017-08-14T02:28:06.000Z","dependencies_parsed_at":null,"dependency_job_id":"ea744220-b616-43e3-b8dd-8e9154bbcdc2","html_url":"https://github.com/moznion/releng.sh","commit_stats":{"total_commits":19,"total_committers":1,"mean_commits":19.0,"dds":0.0,"last_synced_commit":"fc177e62ea34a200ec0e06ea349e4be90ded12f4"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/moznion/releng.sh","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moznion%2Freleng.sh","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moznion%2Freleng.sh/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moznion%2Freleng.sh/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moznion%2Freleng.sh/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/moznion","download_url":"https://codeload.github.com/moznion/releng.sh/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moznion%2Freleng.sh/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32317162,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T23:26:28.701Z","status":"ssl_error","status_checked_at":"2026-04-26T23:26:25.802Z","response_time":129,"last_error":"SSL_read: 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":["bash","releng"],"created_at":"2024-10-10T21:05:14.812Z","updated_at":"2026-04-26T23:31:02.998Z","avatar_url":"https://github.com/moznion.png","language":"Perl","funding_links":[],"categories":[],"sub_categories":[],"readme":"releng.sh [![Build Status](https://travis-ci.org/moznion/releng.sh.svg?branch=master)](https://travis-ci.org/moznion/releng.sh)\n==\n\nDescription\n--\n\nPure bash scripts for release engineering.\n\n### release.sh\n\nThis script performs the following releng processing.\n\n- Initializing\n- Edit changes file\n- git\n  - `git commit $CHANGES_FILE`\n  - `git tag $VERSION`\n  - `git push origin $VERSION`\n- Create GitHub release\n\n#### Usage\n\n```sh\n$ export EDITOR=\"vim\"\n$ export GITHUB_TOKEN=\"token\"\n$ release.sh --init 'Your Project Name' /path/to/changes/file\n$ release.sh /path/to/changes/file\nNext version [0.0.1]:\nNo description for next version in file: '/tmp/M4t7cmru'\nEdit file? [Y/n (default: Y)]: y\n# Lauch editor: fill description under the `%%NEXT_VERSIONT%%`\n#\n# And execute git command like bellow\n#   - git commit /path/to/changes/file\n#   - git tag $VERSION\n#   - git push origin $VERSION\n#\n# Then create GitHub release!\n```\n\n#### Requires\n\n- Set the `$EDITOR` environment variable (e.g. `vim`, `emacs`)\n- Set the `$GITHUB_TOKEN` environment variable (the token must have `repo` authorization)\n\n### changes.sh\n\nThis script performs the following processing.\n\n- Edit changes file\n\n#### Usage\n\n```sh\n$ export EDITOR=\"vim\"\n$ changes.sh /path/to/changes/file\nNext version [0.0.1]:\nNo description for next version in file: '/tmp/M4t7cmru'\nEdit file? [Y/n (default: Y)]: y\n# Lauch editor: fill description under the `%%NEXT_VERSIONT%%`\n```\n\n#### Requires\n\n- Set the `$EDITOR` environment variable (e.g. `vim`, `emacs`)\n\nRequires\n--\n\n- bash\n- git\n- GNU sed\n- GNU data\n\nFor Developers\n--\n\n### Run tests\n\n```sh\n$ cpanm -n Carton\n$ carton install\n$ carton exec -- prove t/\n```\n\n#### Ref\n\n- [https://github.com/miyagawa/cpanminus](https://github.com/miyagawa/cpanminus)\n- [https://github.com/perl-carton/carton](https://github.com/perl-carton/carton)\n\nLicense\n--\n\n```\nThe MIT License (MIT)\nCopyright © 2017- moznion, http://moznion.net/ \u003cmoznion@gmail.com\u003e\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the “Software”), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoznion%2Freleng.sh","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmoznion%2Freleng.sh","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoznion%2Freleng.sh/lists"}