Skip to content
This repository has been archived by the owner on Apr 22, 2019. It is now read-only.

Commit

Permalink
Merge branch 'release/0.2.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
erikhansen committed Jun 9, 2016
2 parents fc0603a + 8127a89 commit aa0e49a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Api/ValidAddressManagementInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ interface ValidAddressManagementInterface
{
/**
* @param \Magento\Customer\Api\Data\AddressInterface $address
* @param $storeId
* @param string $storeId
* @return \Magento\Customer\Api\Data\AddressInterface|string
*/
public function saveValidAddress(\Magento\Customer\Api\Data\AddressInterface $address, $storeId = null);
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 0.2.4 (2016-06-09)

* Fix 'Class "storeId" does not exist' error when loading the Swagger page: /rest/default/schema (Github issue #19)

### 0.2.3 (2016-05-31)

* Fix "$serverData must be an array or object implementing ArrayAccess" error when single tenant compilation was in use
Expand Down
2 changes: 1 addition & 1 deletion Framework/AppInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ interface AppInterface
/**
* If this is updated it must also be updated in etc/module.xml in the config->module@setup_version attribute and and composer.json
*/
const APP_VERSION = '0.2.3';
const APP_VERSION = '0.2.4';
}
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "classyllama/module-avatax",
"type": "magento2-module",
"version": "0.2.3",
"version": "0.2.4",
"license": "OSL-3.0",
"require": {
"magento/framework": "100.0.*",
Expand Down
2 changes: 1 addition & 1 deletion etc/module.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
-->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<!-- If the setup_version attribute is updated it must also be updated in the ClassyLlama\AvaTax\Framework\AppInterface::APP_VERSION constant and composer.json -->
<module name="ClassyLlama_AvaTax" setup_version="0.2.3">
<module name="ClassyLlama_AvaTax" setup_version="0.2.4">
<sequence>
<module name="Magento_Checkout"/>
<module name="Magento_Customer"/>
Expand Down

0 comments on commit aa0e49a

Please sign in to comment.