Update version to 3.1.1

Update misc/scripts/inc_release script: remove non-existent any more files and
update the version in the MSVS 200x project files not generated by bakefile
any more and MSVS 201x project files which were not previously taken into
account.

Run it and rebake.
This commit is contained in:
Vadim Zeitlin
2016-03-02 23:16:16 +01:00
parent 30393a178f
commit 7eee3576cf
126 changed files with 193 additions and 189 deletions

View File

@@ -78,9 +78,6 @@ run_sed configure.in \
run_sed build/osx/wxvers.xcconfig \
"/DYLIB_.* = /s/$ver_for_sed/$ver_string_new/"
run_sed build/tools/bld_chm_exe.bat \
"/^SET WXW_VER=/s/$ver_for_sed/$ver_string_new/"
run_sed docs/readme.txt \
"/wxWidgets /s/$ver_for_sed/$ver_string_new/" \
"/\//s/$ver_for_sed/$ver_string_new/" \
@@ -101,8 +98,6 @@ run_sed samples/Info.plist \
"/version/s/$ver_for_sed/$ver_string_new/" \
"/<string>/s/$ver_for_sed/$ver_string_new/"
run_sed samples/minimal/Info_carbon.plist \
"/<string>/s/$ver_for_sed/$ver_string_new/"
run_sed samples/minimal/Info_cocoa.plist \
"/<string>/s/$ver_for_sed/$ver_string_new/"
@@ -110,4 +105,13 @@ run_sed samples/docview/Info.plist \
"/versionon/s/$ver_for_sed/$ver_string_new/" \
"/<string>/s/$ver_for_sed/$ver_string_new/"
msgn " processing MSVS 200x project files ... "
for f in build/msw/wx_vc[789]*.vcproj; do
sed -i -e 's/\(\(msw\|base\)$ver_major$ver_minor\)$ver_release/\1$ver_release_new/g' $f
done
msgc "done"
run_sed build/msw/wx_setup.props \
"/<wxVersionString>/s/\($ver_major$ver_minor\)$ver_release/\1$ver_release_new/"
msg "Don't forget to change the C:R:A triplet in build/bakefiles/version.bkl now!"