Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare v1.1.1 release #772

Merged
merged 1 commit into from
Sep 1, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v1.1.1 (Sep 1, 2020)
====================
- Fix so that `theme new` doesn't require a theme ID. (#767)

v1.1.0 (Aug 31, 2020)
=====================
- Improvements to notification system (#757)
Expand Down
16 changes: 8 additions & 8 deletions docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ url: "https://shopify.github.io"
sass:
cache: true
# remember to update the checksums
themekitversion: "v1.1.0"
themekitversion: "v1.1.1"
# these can be generated with `make md5s`
darwinamd64sum: f324578347d051c99e1b4b817bcd8ba1
windows386sum: 16e1073b67419268430110b3775c0463
windowsamd64sum: cb4e86ee372916f8247974a6012a3896
linux386sum: 66d282bb898f0932f7f31f9a1c9bcd3b
linuxamd64sum: ab18b9f15ab2d504e5b2a8ff979addb6
freebsd386sum: f5dae8f3551ab6422ab387091b16a2fd
freebsdamd64sum: 6e636f13f0e5bbe1c68810d0e53a5c82
darwinamd64sum: be650ea27d25b47eabb6fadc55f22620
windows386sum: cee0ece1e248ce7e9d4f340045dcdbb3
windowsamd64sum: 3a1fb85c06922a842d6cec841c302e3a
linux386sum: a06df36646c6708204d4af2f69eeca27
linuxamd64sum: 7a4a280d8dc57cbd3a50e44c9058fbbc
freebsd386sum: 295e07e03afc55af09108e8ee591134f
freebsdamd64sum: eca3be174bba29e816f9599fdb5f9cb9

# Build settings
markdown: kramdown
2 changes: 1 addition & 1 deletion src/release/release.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var (
"windows-amd64": "theme.exe",
}
// ThemeKitVersion is the version build of the library
ThemeKitVersion, _ = version.NewVersion("1.1.0")
ThemeKitVersion, _ = version.NewVersion("1.1.1")
)

const (
Expand Down