jsoncpp/get_version.pl
Christopher Dunn 5c4219b8ae Update version in dox
We should automate this, but for now we can at least update:

    make -f dev.makefile update-version
    make -f dev.makefile dox
    # Then, go to jsoncpp-doc repo, add, and push.

* https://github.com/open-source-parsers/jsoncpp-docs/issues/2
2021-01-10 00:18:59 -06:00

6 lines
60 B
Perl

while (<>) {
if (/version : '(.+)',/) {
print "$1";
}
}