mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 09:55:19 +00:00
21 lines
412 B
Bash
21 lines
412 B
Bash
#!/bin/sh
|
|
|
|
#
|
|
# Update Z3 version
|
|
#
|
|
|
|
if [ $# -ne 1 ]; then
|
|
echo "Usage: update-version.sh MAJOR.MINOR.BUILD.REVISION"
|
|
fi
|
|
|
|
sd edit lib/version.h
|
|
sd edit release.cmd
|
|
sd edit shell/shell.rc
|
|
sd edit dll/dll.rc
|
|
sd edit shell/main.cpp
|
|
sd edit Z3Inspector/Properties/AssemblyInfo.cs
|
|
sd edit Microsoft.Z3/Properties/AssemblyInfo.cs
|
|
sd edit Microsoft.Z3V3/AssemblyInfo.cpp
|
|
|
|
scripts/perl scripts/update-version.pl "$1"
|