{"id":19268642,"url":"https://github.com/moolen/asdf","last_synced_at":"2025-09-02T17:08:17.028Z","repository":{"id":146316724,"uuid":"110444495","full_name":"moolen/asdf","owner":"moolen","description":"Changelog generation as easy as typing asdf","archived":false,"fork":false,"pushed_at":"2018-01-11T17:26:12.000Z","size":1272,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-23T19:46:31.464Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/moolen.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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-11-12T15:35:15.000Z","updated_at":"2018-02-22T18:47:04.000Z","dependencies_parsed_at":"2023-07-02T14:30:37.999Z","dependency_job_id":null,"html_url":"https://github.com/moolen/asdf","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/moolen/asdf","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moolen%2Fasdf","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moolen%2Fasdf/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moolen%2Fasdf/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moolen%2Fasdf/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/moolen","download_url":"https://codeload.github.com/moolen/asdf/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moolen%2Fasdf/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273317766,"owners_count":25084044,"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","status":"online","status_checked_at":"2025-09-02T02:00:09.530Z","response_time":77,"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":[],"created_at":"2024-11-09T20:16:57.299Z","updated_at":"2025-09-02T17:08:16.995Z","avatar_url":"https://github.com/moolen.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# asdf\nGenerates a changelog based on semantic commit messages.\n\n## Usage\n\n```\n$ asdf --help\nNAME:\n   asdf - Changelog and version generation based on semantic commit messages.\n\n   Specification about the structure is here: http://conventionalcommits.org\n   All commit messages should follow this very convention:\n   -------------------------------\n   \u003ctype\u003e(scope): \u003csubject\u003e\n\n   \u003cbody\u003e\n   -------------------------------\n\n   Example commit message subjects:\n\n   feat(TICKET-123): implementing a feature\n   fix: fixed something\n   (TICKET-123): some message\n\n\n\nUSAGE:\n   asdf [global options] command [command options] [arguments...]\n\nVERSION:\n   0.1.0\n\nCOMMANDS:\n     next-version, n  Tells you the next version you want to release. By default it uses a VERSION file to fetch the history since the last release. the file location may be overridden via --file\n     generate, g      generates a changelog and the next version based on semantic commits and writes them to files\n     changelog, c     generates the changelog and writes it to stdout. By default it uses a VERSION file to fetch the history since the last release. This can be overridden by defining a--version and --revision\n     help, h          Shows a list of commands or help for one command\n\nGLOBAL OPTIONS:\n   --dir value    set the current wokring directory\n   --help, -h     show help\n   --version, -v  print the version\n```\n### Commit Message Schema\nCommit messages have to follow the angularjs commit message conventions [[link](https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/edit)].\n\n#### Examples\n- `test(PROJ-1312): write tests. do yourself a favor`\n- `docs(PROJ-1000):some thing!`\n- `(TICKK-123): foobar booman`\n- `bug: Y U NO GOAT?`\n\n\n#### Resulting Markdown\n```\n## 0.2.0 (2017-11-14)\n\n#### \n\n* * WIP: generate tests (8835f264) \n\n#### Documentation\n\n* display usage (d2bd0903) \n\n#### Feature\n\n* next command (e6beb561) \n* parsing commit body (6c0eed43) \n\n#### Bug Fixes\n\n* changelog test depended on time oo (ac4b9d06) \n* parsing multi-line commits (9c1b0bea) \n\n#### Code Refactoring\n\n* removing asdf.json (eb481d20) \n* changelog cmd (c80c64e5) \n* getting rid of type constraints (78361cc1) \n* cmd now in repo root (94e034d4) \n\n#### Tests\n\n* config (ddf8535f) \n* cli commands (dcd068a0) \n```\n\n### default types\n| Key | Label | Change type |\n| --- | --- | --- |\n| breaking | Breaking Changes | Major |\n| feat | Feature | Minor |\n| fix | Bug Fixes | Patch |\n| perf | Performance Improvements | Patch |\n| revert | Reverts | Patch |\n| docs | Documentation | Patch |\n| refactor | Code Refactoring | Patch |\n| test | Tests | Patch |\n| chore | Chores | Patch |\n\n\n### TODO\n[ ] add flag `--merge-only`to show only merges\n ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoolen%2Fasdf","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmoolen%2Fasdf","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoolen%2Fasdf/lists"}