{"id":20049714,"url":"https://github.com/scriptkitties/perl6-semver","last_synced_at":"2026-03-04T16:31:51.358Z","repository":{"id":80058756,"uuid":"107395714","full_name":"scriptkitties/perl6-SemVer","owner":"scriptkitties","description":"Class representing a semantic version number","archived":false,"fork":false,"pushed_at":"2017-11-23T09:23:55.000Z","size":10,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-30T07:49:46.944Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Perl 6","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/scriptkitties.png","metadata":{"files":{"readme":"README.adoc","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":"2017-10-18T10:57:12.000Z","updated_at":"2017-11-23T09:23:57.000Z","dependencies_parsed_at":null,"dependency_job_id":"790ffd9d-2273-47c1-9d78-79deb3f066eb","html_url":"https://github.com/scriptkitties/perl6-SemVer","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/scriptkitties/perl6-SemVer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scriptkitties%2Fperl6-SemVer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scriptkitties%2Fperl6-SemVer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scriptkitties%2Fperl6-SemVer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scriptkitties%2Fperl6-SemVer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scriptkitties","download_url":"https://codeload.github.com/scriptkitties/perl6-SemVer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scriptkitties%2Fperl6-SemVer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30086451,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T15:40:14.053Z","status":"ssl_error","status_checked_at":"2026-03-04T15:40:13.655Z","response_time":59,"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":[],"created_at":"2024-11-13T11:51:58.440Z","updated_at":"2026-03-04T16:31:51.337Z","avatar_url":"https://github.com/scriptkitties.png","language":"Perl 6","funding_links":[],"categories":[],"sub_categories":[],"readme":"= SemVer\n:toc: preamble\n\nhttp://semver.org/[Semantic versioning] is a standard to give version numbers\nmeaning. To work with these versions, the `SemVer` class comes into play. It\nwill deal with incrementing the version for you, and making it easy to work\nwith it programmatically.\n\n== Installation\nUse `zef`, the Perl 6 module installer:\n\n[source]\n----\n# zef install SemVer\n----\n\n== Usage\n[source,perl6]\n----\nuse SemVer;\n\n# Create a new SemVer from a string\nmy SemVer $v .= new(\"1.12.3\");\n              # new(1, 12, 3); # Alternative method\n\nsay $v.Str; # \"1.12.3\";\n\n# Increment the patch level\n$v.bump-patch;\n\nsay $v.Str; # \"1.12.4\"\n\n# Increment minor level\n$v.bump-minor;\n\nsay $v.Str; # \"1.13.0\"\n\n# Increment major level\n$v.bump-major;\n\nsay $v.Str; # \"2.0.0\"\n----\n\n== License\nThis module is released under the terms of the GNU GPL version 3 or later.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscriptkitties%2Fperl6-semver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscriptkitties%2Fperl6-semver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscriptkitties%2Fperl6-semver/lists"}