#!/bin/bash
# Creates or updates ChangeLog file. Only for developers.

cd ..
echo "ChangeLog file for XaoS - generated automatically by tools/mkChangeLog.
Please do not edit this file: your changes will be lost.

" > ChangeLog
export LC_ALL=C
svn log >> ChangeLog
svn commit -m "Automatic update by mkChangeLog" ChangeLog
