forked from LiveCarta/PayPal-PHP-SDK
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:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -15,6 +15,7 @@ atlassian-ide-plugin.xml
|
||||
# Composer
|
||||
vendor
|
||||
composer.lock
|
||||
composer.phar
|
||||
|
||||
# Project
|
||||
var
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -1,6 +1,10 @@
|
||||
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
|
||||
----
|
||||
* Vault API updates
|
||||
|
||||
2
Gemfile
2
Gemfile
@@ -1,3 +1,3 @@
|
||||
source 'https://rubygems.org'
|
||||
|
||||
gem 'releasinator', '~> 0.3'
|
||||
gem 'releasinator', '~> 0.5'
|
||||
|
||||
@@ -12,7 +12,7 @@ GEM
|
||||
octokit (4.3.0)
|
||||
sawyer (~> 0.7.0, >= 0.5.3)
|
||||
redcarpet (3.3.4)
|
||||
releasinator (0.3.3)
|
||||
releasinator (0.5.0)
|
||||
colorize (~> 0.7)
|
||||
configatron (~> 4.5)
|
||||
json (~> 1.8)
|
||||
@@ -31,7 +31,7 @@ PLATFORMS
|
||||
ruby
|
||||
|
||||
DEPENDENCIES
|
||||
releasinator (~> 0.3)
|
||||
releasinator (~> 0.5)
|
||||
|
||||
BUNDLED WITH
|
||||
1.12.3
|
||||
|
||||
@@ -12,7 +12,7 @@ class PayPalConstants
|
||||
{
|
||||
|
||||
const SDK_NAME = 'PayPal-PHP-SDK';
|
||||
const SDK_VERSION = '1.7.2';
|
||||
const SDK_VERSION = '1.7.3';
|
||||
|
||||
/**
|
||||
* Approval URL for Payment
|
||||
|
||||
Reference in New Issue
Block a user