Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit bc91be8

Browse files
Merge pull request #1293 from Shopify/release_2_0_0
Packaging for release v2.0.0
2 parents 0d5eb61 + 5c692fc commit bc91be8

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Unreleased
22
------
3-
* Allows new Checkout Extensions to specify configuration attributes in their extension.config.yml file
3+
4+
Version 2.0.0
5+
-------------
6+
* Adds support for theme development
7+
* Changes to command structure (note that these are breaking changes, see [README](README.md))
8+
* Checkout the [apps](https://shopify.dev/apps/tools/cli) and [themes](https://shopify.dev/themes/tools/cli) sections of the new [shopify.dev](https://shopify.dev) after Unite 2021 (June 29).
49

510
Version 1.14.0
611
--------------

Gemfile.lock

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
PATH
22
remote: .
33
specs:
4-
shopify-cli (2.0.0.beta.2)
4+
shopify-cli (2.0.0)
55
listen (~> 3.5)
6-
theme-check (~> 0.10)
6+
theme-check (~> 1.0)
77

88
GEM
99
remote: https://rubygems.org/
@@ -17,13 +17,14 @@ GEM
1717
coderay (1.1.3)
1818
crack (0.4.4)
1919
fakefs (1.2.2)
20-
ffi (1.15.1)
20+
ffi (1.15.3)
2121
hashdiff (1.0.1)
2222
liquid (5.0.1)
2323
listen (3.5.1)
2424
rb-fsevent (~> 0.10, >= 0.10.3)
2525
rb-inotify (~> 0.9, >= 0.9.10)
2626
method_source (1.0.0)
27+
mini_portile2 (2.5.3)
2728
minitest (5.14.2)
2829
minitest-fail-fast (0.1.0)
2930
minitest (~> 5)
@@ -33,7 +34,8 @@ GEM
3334
minitest (>= 5.0)
3435
ruby-progressbar
3536
mocha (1.11.2)
36-
nokogiri (1.11.7-x86_64-darwin)
37+
nokogiri (1.11.7)
38+
mini_portile2 (~> 2.5.0)
3739
racc (~> 1.4)
3840
nokogumbo (2.0.5)
3941
nokogiri (~> 1.8, >= 1.8.4)
@@ -74,7 +76,7 @@ GEM
7476
rubocop-shopify (2.0.1)
7577
rubocop (~> 1.11)
7678
ruby-progressbar (1.11.0)
77-
theme-check (0.10.0)
79+
theme-check (1.0.0)
7880
liquid (>= 5.0.1)
7981
nokogumbo
8082
timecop (0.9.2)

lib/shopify-cli/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module ShopifyCli
2-
VERSION = "2.0.0.beta.2"
2+
VERSION = "2.0.0"
33
end

shopify-cli.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ Gem::Specification.new do |spec|
4444
spec.add_development_dependency("minitest", "~> 5.0")
4545

4646
spec.add_dependency("listen", "~> 3.5")
47-
spec.add_dependency("theme-check", "~> 0.10")
47+
spec.add_dependency("theme-check", "~> 1.0")
4848
end

0 commit comments

Comments
 (0)