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
|
#-*- mode: shell-script; tab-width: 4; -*-
# $Id: VERSION,v 1.58 2008/05/14 15:06:43 vkurland Exp $
FWB_MAJOR_VERSION=2
FWB_MINOR_VERSION=1
FWB_MICRO_VERSION=19
VERSION=$FWB_MAJOR_VERSION.$FWB_MINOR_VERSION.$FWB_MICRO_VERSION
#
# release num. I use it to distinguish between pre-release builds and
# in rare situation when I need to produce replacement RPMs and do not
# want to change version number.
#
# Set it to "1" before publishing the release.
#
RELEASE_NUM="1"
# RELEASE_NUM="`date +%Y%m%d`cvs"
# RELEASE_NUM="RC1"
# RELEASE_NUM="b"
BETA="no"
REQUIRED_LIBFWBUILDER_VERSION="2.1.19"
# current (or major) version number of the library so file
#
LIBFWBUILDER_SOMAJOR=7
|