Skip to content

Commit

Permalink
Prepare 1.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
andyw8 committed Aug 31, 2020
1 parent c893c45 commit 10802b6
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 17 deletions.
7 changes: 2 additions & 5 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
v1.1.0-beta2 (Aug 20, 2020)
===========================
v1.1.0 (Aug 31, 2020)
=====================
- Improvements to notification system (#757)
- Added retries and improved throttling to HTTP requests (#747)

v1.1.0-beta (Aug 19, 2020)
==========================
- Use checksums to prevent unnecessary uploads and downloads for unchanged assets
- Added Strict theme ID handling to prevent accidental live theme alterations (#739)
- Use checksums sourced from API rather than local filesystem in file watcher to optimize startup and fix changes made
Expand Down
2 changes: 1 addition & 1 deletion choco/themekit.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>themekit</id>
<version>1.0.2</version>
<version>1.1.0</version>
<packageSourceUrl>https://github.com/Shopify/themekit/blob/master/choco</packageSourceUrl>
<owners>Shopify</owners>
<title>Shopify Themekit</title>
Expand Down
4 changes: 2 additions & 2 deletions choco/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ $file = "$($toolsDir)\theme.exe"
$version = "v1.0.2"
$url = "https://shopify-themekit.s3.amazonaws.com/$($version)/windows-386/theme.exe"
$url64 = "https://shopify-themekit.s3.amazonaws.com/$($version)/windows-amd64/theme.exe"
$checksum = '5dce511bce4f3d97ea029f5401ab2c20'
$checksum64 = '17fbb2d5a99c8418bec49f3f203baf98'
$checksum = '16e1073b67419268430110b3775c0463'
$checksum64 = 'cb4e86ee372916f8247974a6012a3896'
$validExitCodes = @(0)

Get-ChocolateyWebFile `
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.0.2"
themekitversion: "v1.1.0"
# these can be generated with `make md5s`
darwinamd64sum: 82d2fbed8a53fd8d7952d0c43448b413
windows386sum: 5dce511bce4f3d97ea029f5401ab2c20
windowsamd64sum: 17fbb2d5a99c8418bec49f3f203baf98
linux386sum: f3cc4fb4fbe96b169ddf5ee64827a7b4
linuxamd64sum: 8998c257d2a37f0376137fc218e6190a
freebsd386sum: e96754bd887e703ee5c02f581903978a
freebsdamd64sum: 5717fe19e7a4c21e5cb052822857e752
darwinamd64sum: f324578347d051c99e1b4b817bcd8ba1
windows386sum: 16e1073b67419268430110b3775c0463
windowsamd64sum: cb4e86ee372916f8247974a6012a3896
linux386sum: 66d282bb898f0932f7f31f9a1c9bcd3b
linuxamd64sum: ab18b9f15ab2d504e5b2a8ff979addb6
freebsd386sum: f5dae8f3551ab6422ab387091b16a2fd
freebsdamd64sum: 6e636f13f0e5bbe1c68810d0e53a5c82

# 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-beta2")
ThemeKitVersion, _ = version.NewVersion("1.1.0")
)

const (
Expand Down

0 comments on commit 10802b6

Please sign in to comment.