Skip to content

Commit

Permalink
Revert versioning format to be semver compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
Hannu Pölönen committed Oct 17, 2019
1 parent 0f7c232 commit 39a71ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning.

### 4.0.0-rc1 (pre-release)
### 4.0.0-rc.1 (pre-release)
* Introduce cache for Nosto product data to speedup the product tagging added to the product pages
* Introduce Nosto product data change detection to avoid redundant API calls to Nosto
* Utilize bulk operations for product updates
Expand Down
2 changes: 1 addition & 1 deletion Setup/UpgradeSchema.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public function upgrade(SchemaSetupInterface $setup, ModuleContextInterface $con
);
}

if (version_compare($fromVersion, '4.0.0-rc1', '<')) {
if (version_compare($fromVersion, '4.0.0-rc.1', '<')) {
$this->createProductCacheTable($setup);
if ($connection->isTableExists(self::PRODUCT_QUEUE_TABLE)) {
$connection->dropTable(self::PRODUCT_QUEUE_TABLE);
Expand Down
2 changes: 1 addition & 1 deletion etc/module.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@
<!--suppress XmlUnboundNsPrefix -->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Nosto_Tagging" setup_version="4.0.0-rc1"/>
<module name="Nosto_Tagging" setup_version="4.0.0-rc.1"/>
</config>

0 comments on commit 39a71ae

Please sign in to comment.