neosemver 0.0.0 neosemver: ^0.0.0 copied to clipboard
Semantic versioning and soon extensible constraint solving in Dart.
neosemver #
Semantic versioning and extensible constraint solving.
This library seeks to provide semantic version parsing and constraint solving, but with a few twists compared to pub_semver:
- Implemented precisely the same as Semantic Versioning 2.0.0.
- Dart specific rules ("Pub Semantic Versioning") is an optional extension.
Usage #
// Example.
Version.parse('1.0.0') == Version(1, 0, 0);