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

1
.gitignore vendored
View File

@@ -15,6 +15,7 @@ atlassian-ide-plugin.xml
# Composer # Composer
vendor vendor
composer.lock composer.lock
composer.phar
# Project # Project
var var

View File

@@ -67,7 +67,7 @@ configatron.release_to_github = true
def constant_version() def constant_version()
f=File.open("lib/PayPal/Core/PayPalConstants.php", 'r') do |f| f=File.open("lib/PayPal/Core/PayPalConstants.php", 'r') do |f|
f.each_line do |line| 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] return line.strip.split('= ')[1].strip.split('\'')[1]
end end
end end

View File

@@ -1,6 +1,10 @@
PayPal PHP SDK release notes PayPal PHP SDK release notes
============================ ============================
1.7.3
-----
* Enabled Third Party Invoicing [#581](https://github.com/paypal/PayPal-PHP-SDK/pull/581)
1.7.2 1.7.2
---- ----
* Vault API updates * Vault API updates

View File

@@ -1,3 +1,3 @@
source 'https://rubygems.org' source 'https://rubygems.org'
gem 'releasinator', '~> 0.3' gem 'releasinator', '~> 0.5'

View File

@@ -12,7 +12,7 @@ GEM
octokit (4.3.0) octokit (4.3.0)
sawyer (~> 0.7.0, >= 0.5.3) sawyer (~> 0.7.0, >= 0.5.3)
redcarpet (3.3.4) redcarpet (3.3.4)
releasinator (0.3.3) releasinator (0.5.0)
colorize (~> 0.7) colorize (~> 0.7)
configatron (~> 4.5) configatron (~> 4.5)
json (~> 1.8) json (~> 1.8)
@@ -31,7 +31,7 @@ PLATFORMS
ruby ruby
DEPENDENCIES DEPENDENCIES
releasinator (~> 0.3) releasinator (~> 0.5)
BUNDLED WITH BUNDLED WITH
1.12.3 1.12.3

View File

@@ -12,7 +12,7 @@ class PayPalConstants
{ {
const SDK_NAME = 'PayPal-PHP-SDK'; const SDK_NAME = 'PayPal-PHP-SDK';
const SDK_VERSION = '1.7.2'; const SDK_VERSION = '1.7.3';
/** /**
* Approval URL for Payment * Approval URL for Payment