cpp-semver icon indicating copy to clipboard operation
cpp-semver copied to clipboard

semver in c++

Results 5 cpp-semver issues
Sort by recently updated
recently updated
newest added
trafficstars

I using below code to test a semver 2.0 string. code: ``` { const std::string ver1 = "1.2.3-rc.4"; const std::string ver2 = ">1.1

Hello! I need to increase the version number of a particular part, but there seems to be no API in the library can do such things. Can it be implemented?...

* to run CI with test automatically * to build and test on different platform

help wanted

Not 100% sure why this is happening, but it fixes the error below: ``` In file included from include/cpp-semver.hpp:4, from example/demo.cpp:1: include/base/type.hpp:12:3: error: expected class-name before '{' token 12 |...

Hi. Thank you for cpp-semver. `semver::lt("1.0.0-beta.2", "1.0.0-beta.11")` should return `true`, but it returns `false`. From https://semver.org: ``` 1.0.0-beta.2 < 1.0.0-beta.11 ``` Related to https://github.com/easz/cpp-semver/issues/7 Thank you.