Preparing for 1.7.3

- Updated change log
	- Update version number in PayPalConstants.php
	- Update releasinator gem version
	- Fixed releasinator search regex
This commit is contained in:
Bhavani Bheemanadham
2016-06-21 14:42:35 -05:00
parent 61bc8a79c7
commit 2d0aca8405
6 changed files with 10 additions and 5 deletions

View File

@@ -67,7 +67,7 @@ configatron.release_to_github = true
def constant_version()
f=File.open("lib/PayPal/Core/PayPalConstants.php", 'r') do |f|
f.each_line do |line|
if line.match (/SDK_VERSION = \'\d*\.\d*\.\d*\'/) # SDK_VERSION = '1.7.1'
if line.match (/SDK_VERSION = \'\d+\.\d+\.\d+\'/)
return line.strip.split('= ')[1].strip.split('\'')[1]
end
end