Skip to content

Commit

Permalink
update to v0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
harshavardhana committed Aug 6, 2020
1 parent 859e6e9 commit b8727d4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 19 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
.idea
kes
!kes/
*.test
11 changes: 2 additions & 9 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,10 @@ builds:

archives:
-
name_template: "{{ .Os }}-{{ .Arch }}"
format: zip
name_template: "{{ .ProjectName }}-{{ .Os }}-{{ .Arch }}"
format: binary
replacements:
arm: arm
files:
- README.md
- LICENSE

checksum:
name_template: checksums.txt
algorithm: sha256

signs:
-
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ KES is a stateless and distributed key-management system for high-performance ap

### Binary Releases

| OS | ARCH | Binary |
|:-------:|:-----:|:-----------------:|
| Linux | amd64 | [linux-amd64](https://github.com/minio/kes/releases/latest/download/linux-amd64.zip)
| Linux | arm64 | [linux-arm64](https://github.com/minio/kes/releases/latest/download/linux-arm64.zip)
| Linux | arm | [linux-arm](https://github.com/minio/kes/releases/latest/download/linux-arm.zip)
| Apple | amd64 | [darwin-amd64](https://github.com/minio/kes/releases/latest/download/darwin-amd64.zip)
| Windows | amd64 | [windows-amd64](https://github.com/minio/kes/releases/latest/download/windows-amd64.zip)

You can also verify the binary with [minisign](https://jedisct1.github.io/minisign/) by downloading the corresponding [`.minisign`](https://github.com/minio/kes/releases/latest) signature file. Then run:
| OS | ARCH | Binary |
|:-------:|:-----:|:--------------------------------------------------------------------------------------------:|
| Linux | amd64 | [linux-amd64](https://github.com/minio/kes/releases/latest/download/kes-linux-amd64) |
| Linux | arm64 | [linux-arm64](https://github.com/minio/kes/releases/latest/download/kes-linux-arm64) |
| Linux | arm | [linux-arm](https://github.com/minio/kes/releases/latest/download/kes-linux-arm) |
| Apple | amd64 | [darwin-amd64](https://github.com/minio/kes/releases/latest/download/kes-darwin-amd64) |
| Windows | amd64 | [windows-amd64](https://github.com/minio/kes/releases/latest/download/kes-windows-amd64.exe) |

You can also verify the binary with [minisign](https://jedisct1.github.io/minisign/) by downloading the corresponding [`.minisig`](https://github.com/minio/kes/releases/latest) signature file. Then run:
```
minisign -Vm <OS-ARCH>.zip -P RWTx5Zr1tiHQLwG9keckT0c45M3AGeHD6IvimQHpyRywVWGbP1aVSGav
minisign -Vm kes-<OS>-<ARCH> -P RWTx5Zr1tiHQLwG9keckT0c45M3AGeHD6IvimQHpyRywVWGbP1aVSGav
```

### Docker
Expand Down

0 comments on commit b8727d4

Please sign in to comment.