# This file is not for general consumption; it just manages version
# strings in the distribution.  Use bin/install.rb to install or
# upgrade REXML on your computer.
@files = [
	["README", 
			/^Version: (.*)/, version,
			/^Date: (.*)/, date],
	["documentation.xml", 
			/^\s*<version>(.*?)<\/version>/, version,
			/^\s*<date>(.*?)<\/date>/, date],
	["rexml/rexml.rb", 
			/^\s*VERSION_MAJOR = (.*)/, major,
			/^\s*VERSION_MINOR = (.*)/, minor,
			/^\s*RELEASE = (.*)/, revision,
			/^\s*Date = "(.*)"/, date,
			/^# Date: (.*)/, date,
			/^# Version: (.*)/, version]
]
