Strongly typed semver (https://semver.org) parser for Luau
Find a file
2024-11-10 20:44:18 +05:30
.lune chore: include lune logo asset 2024-11-10 20:43:05 +05:30
.vscode chore: include various vscode settings 2024-11-04 12:18:23 +05:30
lib refactor: add leading | to error type union 2024-11-10 20:37:57 +05:30
tests chore: include test suites for library 2024-11-04 12:18:52 +05:30
.gitignore chore: include .gitignore 2024-11-04 12:19:26 +05:30
.luaurc chore(luaurc): include pkg aliases for lune packages 2024-11-04 12:17:13 +05:30
LICENSE.md chore: init repo 2024-11-04 12:14:53 +05:30
pesde.toml chore(pkg): fix bad includes field 2024-11-04 17:23:27 +05:30
README.md chore: include README 2024-11-10 20:44:18 +05:30

semver-luau

Discord Lune

A Luau library to parse and compare Semantic Versioning compatible version numbers.

Semantic Versioning (Semver) is a versioning scheme for software that uses a three-part version number format, MAJOR.MINOR.PATCH. Additionally, Semver defines rules on when to increment each of these parts:

  • MAJOR version increments indicate incompatible API changes.
  • MINOR version increments indicate the addition of functionality in a backward-compatible manner.
  • PATCH version increments indicate backward-compatible bug fixes.

Semver also allows for optional pre-release and build metadata tags.

For a detailed set of guidelines that Semver version numbers follow, visit the previously linked website containing the full Semver specification.

Usage

To improve error / nil handling ergnomics, this library makes use of util.luau's Option and Result implementations. Any fallible methods return a Result and potentially null values are represented as Options.

Invalid versions should return a Result with the respective error. If not, this is considered a bug, and please consider filing an issue here.

local semver = require("semver")

-- Parse version strings
local v1 = semver.parse("1.2.3"):unwrap() --[[
  major = 1,
  minor = 2,
  patch = 3,
  buildMetadata = Option::None,
  prerelease = Option::None
]]
local v2 = semver.parse("5.12.0+build.1731248766"):unwrap() --[[
  major = 5,
  minor = 12,
  patch = 0,
  buildMetadata = Option::Some("build.1731248766"),
  prerelease = Option::None
]]

-- Compare versions
print(v1 < v2)  -- true
print(v1 > v2)  -- false
print(v1 == v2) -- false

MSLV (Minimum Supported Luau Version)

This library requires at least requires at least Luau 0.629, which corresponds to Lune 0.8.7 (for leading | support).

License

This project is licensed under the MIT license.