source: doc/proposals/concurrency/bump_ver.sh@ 04c8bba

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since 04c8bba was 9b4343e, checked in by Thierry Delisle <tdelisle@…>, 9 years ago

Made significant changes to proposal and added simple version number

  • Property mode set to 100755
File size: 159 bytes
Line 
1#!/bin/bash
2if [ ! -f version ]; then
3 echo "0.0.0" > version
4fi
5
6sed -r 's/([0-9]+\.[0-9]+.)([0-9]+)/echo "\1\$((\2+1))" > version/ge' version > /dev/null
Note: See TracBrowser for help on using the repository browser.