doctrine / lexer

Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.
https://www.doctrine-project.org/projects/lexer.html
MIT License
11.07k stars 60 forks source link

1.2.0 not marked as maintained? #39

Closed mglaman closed 4 years ago

mglaman commented 4 years ago

Per https://www.doctrine-project.org/projects/lexer.html, it shows that the latest minor releases are not maintained. Is this true? 1.2.0 was released a few months ago. Maybe the Doctrine website needs to be updated?

SenseException commented 4 years ago

This is because of an outdated .doctrine-project.json file on master-branch which is used to mark versions as maintained or not. The default state is unmaintained. You can create a PR to fix this if you like. You'll find this file in other Doctrine projects too as reference.

alcaeus commented 4 years ago

Fixed in db47018.

mglaman commented 4 years ago

Thanks!