Revert "Bump version to 2015.03-3"

This reverts commit 9d8e9b5679.
This commit is contained in:
Marius Kintel 2016-02-23 02:01:51 -05:00
parent e243246298
commit 6f68c9fc9b
5 changed files with 3 additions and 8 deletions

View file

@ -39,8 +39,6 @@ isEmpty(QT_VERSION) {
} }
} }
VERSION = 2015.03-3
VERSIONDATE = 2016.02.17
# If VERSION is not set, populate VERSION, VERSION_YEAR, VERSION_MONTH from system date # If VERSION is not set, populate VERSION, VERSION_YEAR, VERSION_MONTH from system date
include(version.pri) include(version.pri)

View file

@ -3,8 +3,6 @@
# Usage: # Usage:
# ./scripts/publish-macosx.sh [buildonly] # ./scripts/publish-macosx.sh [buildonly]
# #
VERSION=2015.03-3
VERSIONDATE=2016.02.17
export NUMCPU=$(sysctl -n hw.ncpu) export NUMCPU=$(sysctl -n hw.ncpu)

View file

@ -4,7 +4,7 @@
# #
if test -z "$VERSION"; then if test -z "$VERSION"; then
VERSION=2015.03-3 VERSION=`date "+%Y.%m.%d"`
COMMIT=-c COMMIT=-c
fi fi

View file

@ -110,10 +110,10 @@ do
done done
if test -z "$VERSIONDATE"; then if test -z "$VERSIONDATE"; then
VERSIONDATE=2016.02.17 VERSIONDATE=`date "+%Y.%m.%d"`
fi fi
if test -z "$VERSION"; then if test -z "$VERSION"; then
VERSION=2015.03-3 VERSION=$VERSIONDATE
fi fi
export VERSIONDATE export VERSIONDATE

View file

@ -571,7 +571,6 @@ include_directories(../src ../src/libtess2/Include)
# Handle OpenSCAD version based on VERSION env. variable. # Handle OpenSCAD version based on VERSION env. variable.
# Use current timestamp if not specified (development builds) # Use current timestamp if not specified (development builds)
set(ENV{VERSION} "2015.03-3")
if ("$ENV{VERSION}" STREQUAL "") if ("$ENV{VERSION}" STREQUAL "")
# Timestamp is only available in cmake >= 2.8.11 # Timestamp is only available in cmake >= 2.8.11
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION}" VERSION_GREATER 2.8.10) if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION}" VERSION_GREATER 2.8.10)