diff --git a/CHANGELOG.md b/CHANGELOG.md index bbac940122..502a053e88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ From version 2.6.0, the sections in this file adhere to the [keep a changelog](https://keepachangelog.com/en/1.0.0/) specification. ## [Unreleased] + +## Version 2.11.1 ### Fixed * [#1973](https://github.com/Shopify/shopify-cli/pull/1973): Fix `theme serve` to preview generated files (`*.css.liquid`) * [#2034](https://github.com/Shopify/shopify-cli/pull/2034): Fix `theme serve` to accept parameters with multiple values @@ -8,7 +10,6 @@ From version 2.6.0, the sections in this file adhere to the [keep a changelog](h * [#2032](https://github.com/Shopify/shopify-cli/pull/2032): Runtime error checking the Node version if Node is not present in the environment. ## Version 2.11.0 - ### Fixed * [#2005](https://github.com/Shopify/shopify-cli/pull/2005): Fix PHP app serve on Windows environments diff --git a/Gemfile.lock b/Gemfile.lock index 1d328c4832..be3d9d1877 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - shopify-cli (2.11.0) + shopify-cli (2.11.1) bugsnag (~> 6.22) listen (~> 3.7.0) theme-check (~> 1.9.0) diff --git a/lib/shopify_cli/version.rb b/lib/shopify_cli/version.rb index 31cafe20b9..613008cbfb 100644 --- a/lib/shopify_cli/version.rb +++ b/lib/shopify_cli/version.rb @@ -1,3 +1,3 @@ module ShopifyCLI - VERSION = "2.11.0" + VERSION = "2.11.1" end