{"id":22412889,"url":"https://github.com/deeper-x/svm","last_synced_at":"2026-05-04T03:35:10.452Z","repository":{"id":207419548,"uuid":"719142908","full_name":"deeper-x/svm","owner":"deeper-x","description":"Semantic Version management tool","archived":false,"fork":false,"pushed_at":"2023-11-16T20:01:44.000Z","size":1392,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-27T03:26:57.808Z","etag":null,"topics":["git","semver"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/deeper-x.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2023-11-15T14:45:40.000Z","updated_at":"2023-11-16T19:57:58.000Z","dependencies_parsed_at":"2023-11-15T18:30:59.326Z","dependency_job_id":"6352f15a-c9b9-4ebd-8f45-31b4759d7365","html_url":"https://github.com/deeper-x/svm","commit_stats":null,"previous_names":["deeper-x/svm"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/deeper-x/svm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deeper-x%2Fsvm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deeper-x%2Fsvm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deeper-x%2Fsvm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deeper-x%2Fsvm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/deeper-x","download_url":"https://codeload.github.com/deeper-x/svm/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deeper-x%2Fsvm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32593944,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T22:12:39.696Z","status":"online","status_checked_at":"2026-05-04T02:00:06.625Z","response_time":58,"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":["git","semver"],"created_at":"2024-12-05T14:11:15.191Z","updated_at":"2026-05-04T03:35:10.420Z","avatar_url":"https://github.com/deeper-x.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"### svm - Semantic Version management\n\nWith `svm` you can easily manage your project's semver. Set incrementally major, minor or patch number. \n\nUsage:\n```sh\n./svm [ show | all | major | minor | patch | undo | write \u003cfile\u003e]\n```\n\nExample:\n```sh\njustorius@XC-1660  (main)$ go build \njustorius@XC-1660  (main)$ ./svm show\nCurrent version: v1.4.0\njustorius@XC-1660  (main)$ ./svm patch\nv1.4.1\njustorius@XC-1660  (main)$ ./svm minor\nv1.5.0\njustorius@XC-1660  (main)$ ./svm major\nv2.0.0\njustorius@XC-1660  (main)$ ./svm patch\nv2.0.1\njustorius@XC-1660  (main)$ ./svm patch\nv2.0.2\njustorius@XC-1660  (main)$ ./svm minor\nv2.1.0\njustorius@XC-1660  (main)$ ./svm undo\nDeleted tag 'v2.1.0' (was 2864110)\njustorius@XC-1660  (main)$ ./svm all\nv1.0.0\nv1.0.1\nv1.1.1\nv1.1.2\nv1.2.2\nv1.2.3\nv1.3.3\nv1.3.4\nv1.4.0\nv1.4.1\nv1.5.0\nv2.0.0\nv2.0.1\nv2.0.2\n\n```\n\n# test\n\n```sh\n$ make unittest\n/usr/bin/go test -v ./...\n?   \tgithub.com/deeper-x/svm/settings\t[no test files]\n=== RUN   TestShow\n--- PASS: TestShow (0.00s)\n=== RUN   TestPatch\n--- PASS: TestPatch (0.00s)\n=== RUN   TestMinor\n--- PASS: TestMinor (0.00s)\n=== RUN   TestMajor\n--- PASS: TestMajor (0.00s)\n=== RUN   TestUndo\n--- PASS: TestUndo (0.00s)\n=== RUN   TestAll\n--- PASS: TestAll (0.00s)\n=== RUN   TestWritre\n--- PASS: TestWritre (0.00s)\n=== RUN   TestSetNewVer\n--- PASS: TestSetNewVer (0.00s)\n=== RUN   TestDelVer\n--- PASS: TestDelVer (0.00s)\nPASS\nok  \tgithub.com/deeper-x/svm\t0.032s\n=== RUN   TestNewTag\n--- PASS: TestNewTag (0.00s)\n=== RUN   TestCheckNumArgs\n--- PASS: TestCheckNumArgs (0.00s)\n=== RUN   TestCheckNumArgsMinimum\n--- PASS: TestCheckNumArgsMinimum (0.00s)\n=== RUN   TestSetNewVer\n--- PASS: TestSetNewVer (0.00s)\n=== RUN   TestDelVer\n--- PASS: TestDelVer (0.00s)\n=== RUN   TestShowAll\n--- PASS: TestShowAll (0.00s)\nPASS\nok  \tgithub.com/deeper-x/svm/git\t(cached)\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeeper-x%2Fsvm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeeper-x%2Fsvm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeeper-x%2Fsvm/lists"}