summaryrefslogtreecommitdiff
path: root/VERSION
Commit message (Collapse)AuthorAgeFilesLines
* changed the VERSION tag to 14MySQL Build Team2011-05-131-1/+1
|
* Cloning of the 5.5.13 release from Mysql-5.5,MySQL Build Team2011-05-111-1/+1
| | | | | increase the version number by two
* Merge from mysql-5.1 (bump the version).Alexander Nozdrin2011-04-111-1/+1
|
* Bumped the version number after clone-offMySQL Build Team2011-03-211-1/+1
|
* bumped up the version to 5.1.11Georgi Kodinov2011-02-111-1/+1
|
* bumped up the versionGeorgi Kodinov2011-01-141-1/+1
|
* Merge from mysql-5.5.8-releaseJonathan Perkin2010-12-161-1/+1
|
* WL#5665: Removal of the autotools-based build systemDavi Arnaut2010-11-201-0/+4
The autotools-based build system has been superseded and is being removed in order to ease the maintenance burden on developers tweaking and maintaining the build system. In order to support tools that need to extract the server version, a new file that (only) contains the server version, called VERSION, is introduced. The file contents are human and machine-readable. The format is: MYSQL_VERSION_MAJOR=5 MYSQL_VERSION_MINOR=5 MYSQL_VERSION_PATCH=8 MYSQL_VERSION_EXTRA=-rc The CMake based version extraction in cmake/mysql_version.cmake is changed to extract the version from this file. The configure to CMake wrapper is retained for backwards compatibility and to support the BUILD/ scripts. Also, a new a makefile target show-dist-name that prints the server version is introduced. VERSION: Add top-level version file. cmake/mysql_version.cmake: Get version information from the top-level VERSION file. Do not cache the version components (MAJOR_VERSION, etc). Add MYSQL_RPM_VERSION as a replacement for MYSQL_U_SCORE_VERSION.