Updates for release 2.1.0

This commit is contained in:
Joshua Estes 2014-11-24 09:19:12 -05:00
parent 2237c7d878
commit 1a315a6ba4
4 changed files with 14 additions and 2 deletions

View File

@ -1,3 +1,11 @@
2.1.0
Bug fix with IPNs not working when debug mode is enabled
Updated BitPay PHP SDK
Added a release checklist
2.0.1
Small bug fix in how package script
2.0.0
Initial release of the new Magento Extension that supports BitPay's new
cryptographically secure API. You can read more about the new API on the

View File

@ -32,7 +32,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
"dev-master": "2.2.x-dev"
}
},
"archive": {

4
release.txt Normal file
View File

@ -0,0 +1,4 @@
[ ] Update version in composer.json file
[ ] Update version in `scripts/package` and run script
[ ] Update CHANGELOG file
[ ] Update to Mangento Connect and GitHub

View File

@ -11,7 +11,7 @@ date_default_timezone_set('America/New_York'); // Main Office is in Eastern Time
/**
* Various Configuration Settings
*/
$version = '2.0.1';
$version = '2.1.0';
$vendorDir = __DIR__ . '/../vendor';
$distDir = __DIR__ . '/../build/dist';
$tmpDistDir = $distDir . '/tmp'; // Files will be placed here temporarly so we can zip/tar them.