Skip to content

Commit

Permalink
release 2.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
kkasowski committed Nov 25, 2016
1 parent 90ee16a commit 5b3fa51
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Changelog

* 2.0.5 - 2016.11.24:
* Fix: Updating customer on checkout page.
* Fix: Removed unnecessary filter.
* 2.0.4.1 - 2016.11.23:
* Fix: Tax calculation.
* 2.0.4 - 2016.11.23:
Expand Down
2 changes: 1 addition & 1 deletion jigoshop.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* Description: Jigoshop, a WordPress eCommerce plugin that works.
* Author: Jigoshop
* Author URI: http://www.jigoshop.com
* Version: 2.0.4.1
* Version: 2.0.5
* Requires at least: 4.0
* Tested up to: 4.6.1
* Text Domain: jigoshop
Expand Down
3 changes: 3 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,9 @@ However, if you want priority, dedicated support from Jigoshop staff, we dp offe

== Changelog ==

= 2.0.5 - 2016.11.24 =
* Fix: Updating customer on checkout page.
* Fix: Removed unnecessary filter.
= 2.0.4.1 - 2016.11.23 =
* Fix: Tax calculation.
= 2.0.4 - 2016.11.23 =
Expand Down
2 changes: 1 addition & 1 deletion src/Jigoshop/Core.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

class Core
{
const VERSION = '2.0.4.1';
const VERSION = '2.0.5';
const WIDGET_CACHE = 'jigoshop_widget_cache';
const TERMS = 'jigoshop_term';

Expand Down
1 change: 0 additions & 1 deletion src/Jigoshop/Frontend/Page/AbstractProductList.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ public function action()
$this->wp->wpRedirect($url);
exit;
}
$this->wp->applyFilters('jigoshop\cart\save_after', null, $product);
} catch (NotEnoughStockException $e) {
if ($e->getStock() == 0) {
$message = sprintf(__('Sorry, we do not have "%s" in stock.', 'jigoshop'), $product->getName());
Expand Down
1 change: 1 addition & 0 deletions src/Jigoshop/Service/CartService.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ public function get($id)
$cart->setId($id);

$state = $this->getStateFromSession($id);
unset($state['customer']);
if (isset($_POST['jigoshop_order']) && Pages::isCheckout()) {
$state = $this->getStateFromCheckout($state);
}
Expand Down
2 changes: 1 addition & 1 deletion vendor/autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

require_once __DIR__ . '/composer' . '/autoload_real.php';

return ComposerAutoloaderInit27a999c48a1e56921aeb59eabeb0a85d::getLoader();
return ComposerAutoloaderInitc1b1b78b4274136f36bff3e366cb19ea::getLoader();
6 changes: 3 additions & 3 deletions vendor/composer/autoload_real.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

// autoload_real.php @generated by Composer

class ComposerAutoloaderInit27a999c48a1e56921aeb59eabeb0a85d
class ComposerAutoloaderInitc1b1b78b4274136f36bff3e366cb19ea
{
private static $loader;

Expand All @@ -19,9 +19,9 @@ public static function getLoader()
return self::$loader;
}

spl_autoload_register(array('ComposerAutoloaderInit27a999c48a1e56921aeb59eabeb0a85d', 'loadClassLoader'), true, true);
spl_autoload_register(array('ComposerAutoloaderInitc1b1b78b4274136f36bff3e366cb19ea', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
spl_autoload_unregister(array('ComposerAutoloaderInit27a999c48a1e56921aeb59eabeb0a85d', 'loadClassLoader'));
spl_autoload_unregister(array('ComposerAutoloaderInitc1b1b78b4274136f36bff3e366cb19ea', 'loadClassLoader'));

$map = require __DIR__ . '/autoload_namespaces.php';
foreach ($map as $namespace => $path) {
Expand Down

0 comments on commit 5b3fa51

Please sign in to comment.