# This defines the files to be changed, and the patterns that describe the
# change.  Each file can have multiple pairs of pattern, change.  The pattern
# must contain a single group, which gets replaced with the change.
# The change can be any variable, but is normally one of:
# 	date
# 	version
# 	major
# 	minor
# 	release
@files = [
	["documentation.xml", 
		/^\s*<version>(.*?)<\/version>/, version,
		/^\s*<date>(.*?)<\/date>/, date
	],
	["src/Version.java",
		/int major = (.*);/, major,
		/int minor = (.*);/, minor,
		/int revision = (.*);/, revision,
		/String DATE = "(.*)";/, date,
		/Copyright  (.*?) Sean/, edt.year.to_s
	],
]

