You might need to tweak your code a little bit if you used any of the changed functions (if there are any). Also, if you have windows, use cygwin (sed, zip and unzip).
Anyway, you need to do this for each .love file:
Code: Select all
unzip YOUR_GAME.love -d some_folder/
cd some_folder
sed -i 's/0.9.2/0.10.0/g' conf.lua
zip -9 -r ../YOUR_GAME.love .
cd ..
rm -r some_folder/
Replace YOUR_GAME.love with your .love name and you can change some_folder/ with any folder name you want as long as it doesn't currently exist.
Hopefully it helped