semver icon indicating copy to clipboard operation
semver copied to clipboard

PHP Semantic Versioning library

Results 11 semver issues
Sort by recently updated
recently updated
newest added

Please tag the master branch so that composer configurations can be fixed to a certain commit.

Hey I saw there is a Version::next() in master but not in any of the tags.. i see it was merged quite some time ago.. Are there any plans for...

I was trying to use your module and... ``` 1.7.0-alpha.0 1.7.0-patch.0 1.7.0-patch2.0 1.7.0-patch.1 1.7.0-patch3.0 1.7.0-patch4.0 1.7.0 ``` Patch must be in the end as I understand.

Hello, First of all, I want to congratulate your project. It'll be very useful. I'm using semver to manage versions of a library I'm implementing, and, I noticed a small...

The include didn't end up in the right spot

also added a testcase to prevent this bug to happen again

You may benefit from using `@DataProvider` for your tests. I believe it would save you lots of lines of code and allow you to make new scenarios by just adding...

Hi again. Semver 2.0.0 states in bullet point 11 that "Build metadata does not figure into precedence". Furthermore it states that "Build metadata SHOULD be ignored when determining version precedence."...

the library should look for a leading 'v' ex. 'v.1.2.3' and remove it (since it's not part of the standard) also pading 0 for missing version parts ex. (1.3 becomes...

Hi, thanks for the library. In bullet point 10, semver 2.0.0 states about build metadata: "Identifiers MUST comprise only ASCII alphanumerics and hyphen [0-9A-Za-z-]." You library currently complains that "0.1.0+SNAPSHOT-123.git456"...