How to update Magento2 using composer

Edit the composer.json file on root folder and change the version of magento in line 5: "version": "2.0.1", and under "require" "require": { "magento/product-community-edition": "2.0.1", Now run: composer update Then run: php bin/magento setup:upgrade And finally re-deploy the static files, which for me is this command: php bin/magento setup:static-content:deploy de_DE en_US That worked for me.

Comments