Skip to content
This repository was archived by the owner on Sep 29, 2023. It is now read-only.

Commit 2d0aca8

Browse files
Preparing for 1.7.3
- Updated change log - Update version number in PayPalConstants.php - Update releasinator gem version - Fixed releasinator search regex
1 parent 61bc8a7 commit 2d0aca8

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ atlassian-ide-plugin.xml
1515
# Composer
1616
vendor
1717
composer.lock
18+
composer.phar
1819

1920
# Project
2021
var

.releasinator.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def wait_for_package_manager(version)
6767
def constant_version()
6868
f=File.open("lib/PayPal/Core/PayPalConstants.php", 'r') do |f|
6969
f.each_line do |line|
70-
if line.match (/SDK_VERSION = \'\d*\.\d*\.\d*\'/) # SDK_VERSION = '1.7.1'
70+
if line.match (/SDK_VERSION = \'\d+\.\d+\.\d+\'/)
7171
return line.strip.split('= ')[1].strip.split('\'')[1]
7272
end
7373
end

Changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
PayPal PHP SDK release notes
22
============================
33

4+
1.7.3
5+
-----
6+
* Enabled Third Party Invoicing [#581](https://github.com/paypal/PayPal-PHP-SDK/pull/581)
7+
48
1.7.2
59
----
610
* Vault API updates

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
source 'https://rubygems.org'
22

3-
gem 'releasinator', '~> 0.3'
3+
gem 'releasinator', '~> 0.5'

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ GEM
1212
octokit (4.3.0)
1313
sawyer (~> 0.7.0, >= 0.5.3)
1414
redcarpet (3.3.4)
15-
releasinator (0.3.3)
15+
releasinator (0.5.0)
1616
colorize (~> 0.7)
1717
configatron (~> 4.5)
1818
json (~> 1.8)
@@ -31,7 +31,7 @@ PLATFORMS
3131
ruby
3232

3333
DEPENDENCIES
34-
releasinator (~> 0.3)
34+
releasinator (~> 0.5)
3535

3636
BUNDLED WITH
3737
1.12.3

lib/PayPal/Core/PayPalConstants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class PayPalConstants
1212
{
1313

1414
const SDK_NAME = 'PayPal-PHP-SDK';
15-
const SDK_VERSION = '1.7.2';
15+
const SDK_VERSION = '1.7.3';
1616

1717
/**
1818
* Approval URL for Payment

0 commit comments

Comments
 (0)