diff --git a/CHANGELOG.md b/CHANGELOG.md index 775d31a..69671c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.15.0 - October 24, 2018 + +- Add holiday calendar for PAD Canada + ## 1.14.0 - July 18, 2018 - Add holiday calendar for BECS New Zealand diff --git a/README.md b/README.md index f62a96f..45ec5a4 100644 --- a/README.md +++ b/README.md @@ -122,6 +122,7 @@ The calendars that we include are: * Bankgirot * BECS (Australia) * BECSNZ (New Zealand) +* PAD (Canada) * Betalingsservice * Target (SEPA) diff --git a/lib/business/data/padca.yml b/lib/business/data/padca.yml new file mode 100644 index 0000000..b6f2c86 --- /dev/null +++ b/lib/business/data/padca.yml @@ -0,0 +1,27 @@ +working_days: + - monday + - tuesday + - wednesday + - thursday + - friday + +holidays: + - January 1st, 2018 + - March 30th, 2018 + - May 21st, 2018 + - July 2nd, 2018 + - September 3rd, 2018 + - October 8th, 2018 + - November 12th, 2018 + - December 25th, 2018 + - December 26th, 2018 + - January 1st, 2019 + - April 19th, 2019 + - May 20th, 2019 + - July 1st, 2019 + - September 2nd, 2019 + - October 14th, 2019 + - November 11th, 2019 + - December 25th, 2019 + - December 26th, 2019 + - January 1st, 2020 \ No newline at end of file diff --git a/lib/business/version.rb b/lib/business/version.rb index 532ba3c..a87d7b5 100644 --- a/lib/business/version.rb +++ b/lib/business/version.rb @@ -1,3 +1,3 @@ module Business - VERSION = "1.14.0" + VERSION = "1.15.0" end