{"id":13541298,"url":"https://github.com/abusch/nu_plugin_semver","last_synced_at":"2026-01-27T06:11:41.054Z","repository":{"id":215736967,"uuid":"739666791","full_name":"abusch/nu_plugin_semver","owner":"abusch","description":"A nushell plugin to work with semver versions","archived":false,"fork":false,"pushed_at":"2025-11-30T04:07:36.000Z","size":260,"stargazers_count":13,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-02T09:13:34.397Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","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/abusch.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-01-06T06:52:52.000Z","updated_at":"2025-11-30T04:06:11.000Z","dependencies_parsed_at":"2024-02-08T22:05:18.211Z","dependency_job_id":"8232488e-84c9-466c-aa71-78be9cee6cb6","html_url":"https://github.com/abusch/nu_plugin_semver","commit_stats":null,"previous_names":["abusch/nu_plugin_semver"],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/abusch/nu_plugin_semver","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abusch%2Fnu_plugin_semver","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abusch%2Fnu_plugin_semver/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abusch%2Fnu_plugin_semver/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abusch%2Fnu_plugin_semver/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abusch","download_url":"https://codeload.github.com/abusch/nu_plugin_semver/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abusch%2Fnu_plugin_semver/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28618859,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T23:49:58.628Z","status":"ssl_error","status_checked_at":"2026-01-20T23:47:29.996Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":[],"created_at":"2024-08-01T10:00:43.376Z","updated_at":"2026-01-21T00:01:34.525Z","avatar_url":"https://github.com/abusch.png","language":"Rust","readme":"# Nushell plugin to deal with SemVer versions\n\nThis is a plugin for the [`nu`](https://nushell.sh) shell to manipulate strings representing versions that conform to the [SemVer](https://semver.org) specification.\n\n## Installation\n\nYou can compile from source by checking out this repository and running `cargo install --path .`, or installing the latest version with `cargo install nu_plugin_semver`.\n\nIn both cases you then need to register the plugin by running `plugin add /path/to/nu_plugin_semver` from within `nu`. Typically, the plugin can be found in `$HOME/.cargo/bin/`.\n\n## Examples\n```nu\n# Parse a semver string into a semver value\n\u003e let v = \"1.2.3-alpha.1+build\" | into semver\n\n# You can access individual fields of a version:\n\u003e $v.minor\n2\n\n# You can bump a version to different levels:\n\u003e $v | semver bump patch\n1.2.3+build\n\n\u003e $v | semver bump major\n2.0.0\n\n# Semver values can be turned back into strings using\n\u003e $v | to text\n\n# Semver values can be matched against a version requirement:\n\u003e let v = \"3.2.1\" | into semver\n\n\u003e  $v | semver match-req \"3\"\ntrue\n\n\u003e  $v | semver match-req \"\u003e=2\"\ntrue\n\n\u003e  $v | semver match-req \"\u003e=2,\u003c3\"\nfalse\n\n# Semver values can be sorted, according to semver semantics\n❯ [\"3.2.1\", \"2.3.4\", \"3.2.2\", \"2.3.4-beta.1\", \"2.3.4-alpha.1\", \"2.3.4-alpha.2\"] | into semver | sort\n╭───┬───────────────╮\n│ 0 │ 2.3.4-alpha.1 │\n│ 1 │ 2.3.4-alpha.2 │\n│ 2 │ 2.3.4-beta.1  │\n│ 3 │ 2.3.4         │\n│ 4 │ 3.2.1         │\n│ 5 │ 3.2.2         │\n╰───┴───────────────╯\n\n```\n","funding_links":[],"categories":["Plugins"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabusch%2Fnu_plugin_semver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabusch%2Fnu_plugin_semver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabusch%2Fnu_plugin_semver/lists"}