From 0ed4d9f82fffe68c7d4616c1d451be6bf9d1a497 Mon Sep 17 00:00:00 2001 From: Kevin O'Sullivan Date: Tue, 29 Jun 2021 10:44:04 -0400 Subject: [PATCH] Packaging for release v2.0.1 --- CHANGELOG.md | 7 +++++-- Gemfile.lock | 2 +- RELEASING.md | 2 ++ lib/shopify-cli/version.rb | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d539e6b03e..bbe5b36c4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,12 @@ Unreleased ------ -* [#1298](https://github.com/Shopify/shopify-cli/pull/1298): Fix error in `theme serve` command + +Version 2.0.1 +------------- +* [#1295](https://github.com/Shopify/shopify-cli/pull/1295): Ignore files at the root of a theme app extension project * [#1296](https://github.com/Shopify/shopify-cli/pull/1296): Fix issue [#1294](https://github.com/Shopify/shopify-cli/issues/1294) regarding call to Windows `start` command with URL. +* [#1298](https://github.com/Shopify/shopify-cli/pull/1298): Fix error in `theme serve` command * [#1301](https://github.com/Shopify/shopify-cli/pull/1301): Add `theme init` command -* [#1295](https://github.com/Shopify/shopify-cli/pull/1295): Ignore files at the root of a theme app extension project Version 2.0.0 ------------- diff --git a/Gemfile.lock b/Gemfile.lock index e03a0e2afd..ac6eecb822 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - shopify-cli (2.0.0) + shopify-cli (2.0.1) listen (~> 3.5) theme-check (~> 1.0) diff --git a/RELEASING.md b/RELEASING.md index ab9e720e80..f04fbb2beb 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -15,6 +15,8 @@ 1. Update the version of Shopify CLI in `lib/shopify-cli/version.rb` +1. Update the version of Shopify CLI at the top of `Gemfile.lock` (failing to do so causes the CI build to fail) + 1. Add an entry for the new release to `CHANGELOG.md` 1. Commit the changes with a commit message like "Packaging for release X.Y.Z" diff --git a/lib/shopify-cli/version.rb b/lib/shopify-cli/version.rb index fe46924388..92f3844adf 100644 --- a/lib/shopify-cli/version.rb +++ b/lib/shopify-cli/version.rb @@ -1,3 +1,3 @@ module ShopifyCli - VERSION = "2.0.0" + VERSION = "2.0.1" end