# 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
	],
	["myoPyx.java",
		/\@version (.*)/, version,
		/\@date (.*)/, date,
		/Copyright  (.*?) Sean/, edt.year.to_s
	],
]

