Skip to content

Commit

Permalink
release v1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Olivia Thet committed Nov 3, 2023
1 parent 6dd4e03 commit fef8ef1
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 30 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -257,36 +257,36 @@ export VERSION=vX.Y.Z
Build the release artifacts:
```sh
$ make VERSION=$VERSION dist
make VERSION=$VERSION dist
```
Cut a new release branch:
```sh
$ git branch -b release-$VERSION
git checkout -b release-$VERSION
```
Open a pull request, and once you have enough approvals, tag the release:
```sh
$ git tag -sa $VERSION -m "New release: $VERSION"
git tag -sa $VERSION -m "New release: $VERSION"
```
Finally, update the download table above, with links pointing to the new binaries.
Once the pull request is merged, ask your reviewer(s) to attest with `git sig`:
```sh
$ make reproduce
make reproduce
# If the reproduce command succeeds:
$ git sig add
git sig add
```
Once enough signatures have been collected, the following command should succeed:
```sh
$ git sig verify --threshold 2
git sig verify --threshold 2
```
Finally, post the new release on Github with a changelog and update the Homebrew tap.
Expand Down
10 changes: 5 additions & 5 deletions dist/Formula/turnkey.rb
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
class Turnkey < Formula
desc "Turnkey CLI"
homepage "https://github.com/tkhq/tkcli"
version "v1.0.3"
version "v1.0.4"
license "Apache License 2.0"

if Hardware::CPU.arm?
url "https://github.com/tkhq/tkcli/raw/v1.0.3/dist/turnkey.darwin-aarch64", using: CurlDownloadStrategy
sha256 "f7689f57693b524f223b34175c0278267f74b6831464386038d0ee17ee546eff"
url "https://github.com/tkhq/tkcli/raw/v1.0.4/dist/turnkey.darwin-aarch64", using: CurlDownloadStrategy
sha256 "fdd30cffebefb58b113526ae0dd26e5b906910a83d8a5741eadb1e5e8f46aea0"

def install
bin.install "turnkey.darwin-aarch64" => "turnkey"
end
end
if Hardware::CPU.intel?
url "https://github.com/tkhq/tkcli/raw/v1.0.3/dist/turnkey.darwin-x86_64", using: CurlDownloadStrategy
sha256 "07ffe737d5948b401e05a8d38fabedbd063f8ec69dda7d78084377ae65e5c014"
url "https://github.com/tkhq/tkcli/raw/v1.0.4/dist/turnkey.darwin-x86_64", using: CurlDownloadStrategy
sha256 "51bf14f44f2f0082ebe3af846cd318dd59518c83426705f5792b820c7581de9d"

def install
bin.install "turnkey.darwin-x86_64" => "turnkey"
Expand Down
12 changes: 6 additions & 6 deletions dist/manifest.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
b4fa938c49517315896f35a63ec84c66f949b7eaab579c5e86917d9fa7c685d9 Formula/turnkey.rb
058ae48aa5d85624b20cc02d15a36bb5402d867d8c4d3279f811fc813e3ba9f9 release.env
f7689f57693b524f223b34175c0278267f74b6831464386038d0ee17ee546eff turnkey.darwin-aarch64
07ffe737d5948b401e05a8d38fabedbd063f8ec69dda7d78084377ae65e5c014 turnkey.darwin-x86_64
f586683a4ecb6bf0f0c7f08ee64dfb41c20978f5e17c947d400973735f4e474a turnkey.linux-aarch64
0329274a526d1d5d631a798be123097ab17c4d3205a7e71af6f8dbabd4cf4b0c turnkey.linux-x86_64
ea7151a3d0ce3bcd0a98516835a2178b84086d827a44ab5099b3a48b36c081dc Formula/turnkey.rb
dee9a77f9e35bc511b3f45983411cf54fa4b9678cd55720cfccf2e00487e64a3 release.env
fdd30cffebefb58b113526ae0dd26e5b906910a83d8a5741eadb1e5e8f46aea0 turnkey.darwin-aarch64
51bf14f44f2f0082ebe3af846cd318dd59518c83426705f5792b820c7581de9d turnkey.darwin-x86_64
f117b52c1796ef215c362f881df9bc2757a9864e09c7641707eb50edcb3192b8 turnkey.linux-aarch64
e4516f7aadf5606329896a53b5d352d6e4d59b5fa523829374eb19910e9877bf turnkey.linux-x86_64
10 changes: 5 additions & 5 deletions dist/release.env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION=v1.0.3
GIT_REF=cd7020e08beb88db81c11427e0e8c85779f26ee0
GIT_AUTHOR=Seán C McCord
GIT_KEY=39B2095B61DD23EEE1BF883A8A1F048490D23AFD
GIT_TIMESTAMP=2023-10-17 12:28:02 -0400
VERSION=v1.0.4
GIT_REF=3f70e6f80848e1877ee32ead2a38abcd59f2583d
GIT_AUTHOR=Tim Hawbaker
GIT_KEY=C6286D4F4E05154F1D187751B11892B3FD129ABD
GIT_TIMESTAMP=2023-11-02 08:51:52 -0700
4 changes: 2 additions & 2 deletions dist/turnkey.darwin-aarch64
Git LFS file not shown
4 changes: 2 additions & 2 deletions dist/turnkey.darwin-x86_64
Git LFS file not shown
4 changes: 2 additions & 2 deletions dist/turnkey.linux-aarch64
Git LFS file not shown
4 changes: 2 additions & 2 deletions dist/turnkey.linux-x86_64
Git LFS file not shown

0 comments on commit fef8ef1

Please sign in to comment.