Revision 2a138ced2911a5b01ea32672242d6bf9cb2f0bdf authored by Clément OUDOT on 20 December 2018, 16:56:10 UTC, committed by Clément OUDOT on 20 December 2018, 16:56:10 UTC
1 parent 6f7e79e
Raw File
changelibversion
#!/bin/bash

VERSION=2.0.0

perl -i -pe 's/^our \$VERSION.*$/our \$VERSION = '\'$VERSION\'';/' $(find l*/lib/ -name *.pm)
perl -i -pe 's/(Lemonldap::NG::(?:Common|Handler|Portal|Manager): +v)[\d\.]+/${1}'$VERSION'/' lemonldap-ng-*/META.yml
perl -i -pe "s/('Lemonldap::NG::(?:Common|Handler|Portal|Manager)'\\s*=>\\s*)'[\d\.]+'/\${1}'$VERSION'/" lemonldap-ng-*/Makefile.PL
back to top