From b39c0476687163649ed0e524a1e2f7123091790e Mon Sep 17 00:00:00 2001 From: mage2-team <mage2-team@magento.com> Date: Fri, 18 Oct 2013 13:31:10 -0700 Subject: [PATCH] 2.0.0.0-dev48 * Various improvements: * Added static integrity test for compilation of DI definitions * Lightweight replacement for PhpUnit data providers is implemented and involved in static and integrity tests with big data providers (primarily file lists) * Fixed bugs: * Fixed broken styles on front-end due to usage of nonexistent stylesheet * Fixed plugins configuration inheritance for proxy classes * Fixed OAuth consumer credentials expiry not being correctly calculated and added credentials HTTP post to the consumer endpoint * Fixed Namespace class references * Fixed error on creating shipment with bundle products * Fixed uninstallation via console installer * Fixed JavaScript error in bootstrap in IE8/9 * Fixed placing order within PayPal Payments Advanced and Payflow Link * Fixed fatal error on placing order with Billing Agreement --- CHANGELOG.md | 2 +- app/code/Magento/Core/Model/App.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b7f7f622f7c..f4596a58156 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ * Fixed error on creating shipment with bundle products * Fixed uninstallation via console installer * Fixed JavaScript error in bootstrap in IE8/9 - * Fixed placing order within PayPal Payments Advanced and Payflow link + * Fixed placing order within PayPal Payments Advanced and Payflow Link * Fixed fatal error on placing order with Billing Agreement 2.0.0.0-dev47 diff --git a/app/code/Magento/Core/Model/App.php b/app/code/Magento/Core/Model/App.php index 39c028e3389..cab518ce5c3 100644 --- a/app/code/Magento/Core/Model/App.php +++ b/app/code/Magento/Core/Model/App.php @@ -51,7 +51,7 @@ class App implements \Magento\Core\Model\AppInterface /** * Magento version */ - const VERSION = '2.0.0.0-dev47'; + const VERSION = '2.0.0.0-dev48'; /** * Custom application dirs @@ -921,7 +921,7 @@ class App implements \Magento\Core\Model\AppInterface 'revision' => '0', 'patch' => '0', 'stability' => 'dev', - 'number' => '47', + 'number' => '48', ); } } -- GitLab