1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
#!/bin/sh
#
# Copyright (C) 2004-2025 Freeciv team
# Version definition for Freeciv.
MAJOR_VERSION="3"
MINOR_VERSION="2"
PATCH_VERSION="1"
EMERGENCY_VERSION=""
VERSION_LABEL=""
# Type is either "development" or "stable"
# Date and NEWS URL are relevant only for "stable" releases
if test "${VERSION_LABEL}" = "" ; then
RELEASE_TYPE="stable"
RELEASE_DATE="2025-10-10"
NEWS_URL="https://www.freeciv.org/wiki/NEWS-${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION}"
else
RELEASE_TYPE="development"
#RELEASE_DATE="2025-07-10"
#NEWS_URL="https://www.freeciv.org/wiki/NEWS-3.2.0"
fi
#
# At the time being these same updates need to be made to the meson.build,
# it does not get them automatically from here.
#
# 1) Development until MAJOR and MINOR version numbers are
# set to new release series:
# - IS_DEVEL_VERSION=1
# - IS_FREEZE_VERSION=0
# - IS_BETA_VERSION=0
#
# 2) Development from version number bump to entering beta mode:
# - IS_DEVEL_VERSION=1
# - IS_FREEZE_VERSION=1
# - IS_BETA_VERSION=0
#
# 3) Development during beta mode, starting latest from beta1,
# until first RC:
# - IS_DEVEL_VERSION=0
# - IS_FREEZE_VERSION=0
# - IS_BETA_VERSION=1
#
# 4) Stable, starting from first RC:
# - IS_DEVEL_VERSION=0
# - IS_FREEZE_VERSION=0
# - IS_BETA_VERSION=0
#
# 5) Final.
# Update DEFAULT_FOLLOW_TAG to "stable", and also
# windows/installer_msys2/Makefile.meson -Dfollowtag to "windows"
# windows/installer_msys2/Makefile.autotools --with-followtag to "windows"
# platforms/macos/homebrew-appbundle.sh -Dfollowtag to "macos"
IS_DEVEL_VERSION=0
IS_FREEZE_VERSION=0
IS_BETA_VERSION=0
NEXT_STABLE_VERSION="3.2.0"
# 0 to disable display of release month until we can make better estimate
RELEASE_MONTH=0
MAIN_VERSION=3.2
DATASUBDIR=3.2
DEFAULT_FOLLOW_TAG=stable
# Freeciv network capstring: see documentation in common/capstr.c
#
# +Freeciv.Devel-V.V-YYYY.MMM.DD is the base capability string.
#
# - No new mandatory capabilities can be added to the release branch; doing
# so would break network capability of supposedly "compatible" releases.
#
NETWORK_CAPSTRING="+Freeciv-3.2-network ownernull16 unignoresync tu32 hap2clnt"
# If you are distributing freeciv, and apply any patches at all,
# patch also this field to contain your identification.
#
# See doc/README.packaging chapter "Compatibility of modified versions"
FREECIV_DISTRIBUTOR=""
if test "${FREECIV_LABEL_FORCE}" != "" ; then
VERSION_LABEL="$(echo "${FREECIV_LABEL_FORCE}" | sed "s/<base>/${VERSION_LABEL}/g")"
fi
if test x$VERSION_REVTYPE = xgit && command -v git > /dev/null ; then
VERSION_REV="$(git rev-parse --short HEAD)"
else
VERSION_REV=""
fi
if test "x$VERSION_REV" != "x" ; then
case "x$VERSION_LABEL" in
x*+) ;;
*) VERSION_REV="+${VERSION_REV}" ;;
esac
fi
if test x$EMERGENCY_VERSION != x ; then
EMERG_PART=".${EMERGENCY_VERSION}"
fi
VERSION_STRING=${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION}${EMERG_PART}${VERSION_LABEL}
if test x$VERSION_SCRIPT_SILENT != xyes ; then
echo ${VERSION_STRING}${VERSION_REV}
fi
|