Move dist/RELEASE to the top level of the tree.

Bump the version to 1.2.3 to check that it is updated everywhere.

--HG--
rename : dist/RELEASE => RELEASE
This commit is contained in:
Michael Cahill
2012-08-02 14:23:03 +10:00
parent 9be5203796
commit 06e48b3b0b
10 changed files with 14 additions and 14 deletions

View File

@@ -23,9 +23,9 @@ if sys.platform == 'darwin':
dir = os.path.dirname(__file__)
# Read the version information from dist/RELEASE
dist = os.path.join(os.path.dirname(os.path.dirname(dir)), 'dist')
for l in open(os.path.join(dist, 'RELEASE')):
# Read the version information from the RELEASE file
top = os.path.dirname(os.path.dirname(dir))
for l in open(os.path.join(top, 'RELEASE')):
if re.match(r'WIREDTIGER_VERSION_(?:MAJOR|MINOR|PATCH)=', l):
exec(l)