Skip to content

Commit

Permalink
RELEASE FINALE 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
d-belousov committed Sep 21, 2016
1 parent b81ae0c commit 504bfe9
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
* 1.1.2 (21/09/2016)

* Added: Ability to Migrate from Magento1 module v6.5.0.6 version

* 1.1.1 (12/09/2016)

* Improvement: Different versions values will be used for Marketing and Setup purposes
Expand Down
2 changes: 1 addition & 1 deletion Controller/Adminhtml/MigrationFromMagento1/Complete.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class Complete extends \Ess\M2ePro\Controller\Adminhtml\Base
{
const SUPPORTED_SOURCE_VERSION = '6.5.0.5';
const SUPPORTED_SOURCE_VERSION = '6.5.0.6';

protected $dbModifier;

Expand Down
4 changes: 2 additions & 2 deletions Helper/Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public function getName()

public function getPublicVersion()
{
return '1.1.1';
return '1.1.2';
}

public function getSetupVersion()
Expand Down Expand Up @@ -118,7 +118,7 @@ public function getComposerVersion()

public function getRevision()
{
return '1199';
return '1200';
}

//########################################
Expand Down
4 changes: 4 additions & 0 deletions Setup/MigrationFromMagento1.php
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,10 @@ private function migrateEbaySynchronizationTemplate()

private function migrateAmazonMarketplaces()
{
$this->getTableModifier('amazon_marketplace')->renameColumn(
'is_new_asin_available', 'is_asin_available', true, true
);

$this->getConnection()->delete($this->getFullTableName('marketplace'), [
'id IN (?)' => [27, 32]
]);
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "m2epro/ebay-amazon-rakuten-sears-magento-integration-order-import-and-stock-level-synchronization",
"description": "M2E Pro is a Magento trusted (TM), award-winning extension, which allows merchants of all sizes to fully integrate Magento based system(s) into eBay/Amazon/Rakuten.com platforms.",
"type": "magento2-module",
"version": "1.1.1",
"version": "1.1.2",
"keywords": ["ebay", "amazon", "rakuten", "magento"],
"homepage": "http://www.m2epro.com/",
"require": {
Expand Down
9 changes: 9 additions & 0 deletions versions_history.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
{
"1.1.2": {
"versions": {
"setup": "1.1.0",
"files": "1.1.2"
},
"revisions": {
"svn": "1200"
}
},
"1.1.1": {
"versions": {
"setup": "1.1.0",
Expand Down

0 comments on commit 504bfe9

Please sign in to comment.