Skip to content

Commit

Permalink
Release v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderkiel committed Aug 19, 2022
1 parent 222e211 commit 2eb8fbf
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 12 deletions.
6 changes: 6 additions & 0 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,10 @@ go get <dependency name>

```sh
go get github.com/vbauerster/mpb/v7
```

## Build Releases

```sh
VERSION=0.10.0 ./build-releases.sh
```
40 changes: 33 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ blazectl is written in Go. All you need is a single binary which is available fo
1. Download the latest release with the command:

```bash
curl -LO https://github.com/samply/blazectl/releases/download/v0.9.0/blazectl-0.9.0-linux-amd64.tar.gz
curl -LO https://github.com/samply/blazectl/releases/download/v0.10.0/blazectl-0.10.0-linux-amd64.tar.gz
```

1. Untar the binary:

```bash
tar xzf blazectl-0.9.0-linux-amd64.tar.gz
tar xzf blazectl-0.10.0-linux-amd64.tar.gz
```

1. Move the binary in to your PATH.
Expand All @@ -42,13 +42,13 @@ blazectl is written in Go. All you need is a single binary which is available fo
1. Download the latest release with the command:

```bash
curl -LO https://github.com/samply/blazectl/releases/download/v0.9.0/blazectl-0.9.0-darwin-amd64.tar.gz
curl -LO https://github.com/samply/blazectl/releases/download/v0.10.0/blazectl-0.10.0-darwin-amd64.tar.gz
```

1. Untar the binary:

```bash
tar xzf blazectl-0.9.0-darwin-amd64.tar.gz
tar xzf blazectl-0.10.0-darwin-amd64.tar.gz
```

1. Move the binary in to your PATH.
Expand All @@ -69,13 +69,13 @@ blazectl is written in Go. All you need is a single binary which is available fo
1. Download the latest release with the command:

```bash
curl -LO https://github.com/samply/blazectl/releases/download/v0.9.0/blazectl-0.9.0-darwin-arm64.tar.gz
curl -LO https://github.com/samply/blazectl/releases/download/v0.10.0/blazectl-0.10.0-darwin-arm64.tar.gz
```

1. Untar the binary:

```bash
tar xzf blazectl-0.9.0-darwin-arm64.tar.gz
tar xzf blazectl-0.10.0-darwin-arm64.tar.gz
```

1. Move the binary in to your PATH.
Expand All @@ -90,6 +90,32 @@ blazectl is written in Go. All you need is a single binary which is available fo
blazectl --version
```

### Linux - arm64

1. Download the latest release with the command:

```bash
curl -LO https://github.com/samply/blazectl/releases/download/v0.10.0/blazectl-0.10.0-linux-arm64.tar.gz
```

1. Untar the binary:

```bash
tar xzf blazectl-0.10.0-linux-arm64.tar.gz
```

1. Move the binary in to your PATH.

```bash
sudo mv ./blazectl /usr/local/bin/blazectl
```

1. Test to ensure the version you installed is up-to-date:

```bash
blazectl --version
```

### Windows

1. Download the latest release [here][3]
Expand Down Expand Up @@ -262,7 +288,7 @@ Unless required by applicable law or agreed to in writing, software distributed

[1]: <http://docs.simplifier.net/vonkloader/>
[2]: <https://github.com/synthetichealth/uploader>
[3]: <https://github.com/samply/blazectl/releases/download/v0.9.0/blazectl-0.9.0-windows-amd64.zip>
[3]: <https://github.com/samply/blazectl/releases/download/v0.10.0/blazectl-0.10.0-windows-amd64.zip>
[4]: <https://github.com/samply/blaze>
[5]: <https://github.com/synthetichealth/synthea>
[6]: <https://github.com/tsenart/vegeta>
Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ var rootCmd = &cobra.Command{
Long: `blazectl is a command line tool to control your FHIR® server.
Currently you can upload transaction bundles from a directory, download and count resources.`,
Version: "0.9.0",
Version: "0.10.0",
}

// Execute adds all child commands to the root command and sets flags appropriately.
Expand Down
8 changes: 4 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.18

require (
github.com/samply/golang-fhir-models/fhir-models v0.2.1
github.com/spf13/cobra v1.4.0
github.com/spf13/cobra v1.5.0
github.com/stretchr/testify v1.7.1
github.com/vbauerster/mpb/v7 v7.4.2
gonum.org/v1/gonum v0.11.0
Expand All @@ -14,11 +14,11 @@ require (
github.com/VividCortex/ewma v1.2.0 // indirect
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/rivo/uniseg v0.3.4 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
golang.org/x/sys v0.0.0-20220818161305-2296e01440c6 // indirect
gopkg.in/yaml.v3 v3.0.0 // indirect
)
9 changes: 9 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,29 @@ github.com/VividCortex/ewma v1.2.0/go.mod h1:nz4BbCtbLyFDeC9SUHbtcT5644juEuWfUAU
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d h1:licZJFw2RwpHMqeKTCYkitsPqHNxTmd4SNR5r94FGM8=
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d/go.mod h1:asat636LX7Bqt5lYEZ27JNDcqxfjdBQuJ/MM4CN/Lzo=
github.com/cpuguy83/go-md2man/v2 v2.0.1/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM=
github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8=
github.com/inconshreveable/mousetrap v1.0.1 h1:U3uMjPSQEBMNp1lFxmllqCPM6P5u/Xq7Pgzkat/bFNc=
github.com/inconshreveable/mousetrap v1.0.1/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw=
github.com/mattn/go-runewidth v0.0.13 h1:lTGmDsbAYt5DmK6OnoV7EuIF1wEIFAcxld6ypU4OSgU=
github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/rivo/uniseg v0.2.0 h1:S1pD9weZBuJdFmowNwbpi7BJ8TNftyUImj/0WQi72jY=
github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
github.com/rivo/uniseg v0.3.4 h1:3Z3Eu6FGHZWSfNKJTOUiPatWwfc7DzJRU04jFUqJODw=
github.com/rivo/uniseg v0.3.4/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
github.com/samply/golang-fhir-models/fhir-models v0.2.1 h1:75LJIK6jPYBjkwXGIF4k4o2mxuPIiLYR4o7qwgojQOk=
github.com/samply/golang-fhir-models/fhir-models v0.2.1/go.mod h1:EiEcTW0WIjByVUA/z4GdOx3mEzfMoUDUJq529Q6MDLc=
github.com/spf13/cobra v1.4.0 h1:y+wJpx64xcgO1V+RcnwW0LEHxTKRi2ZDPSBjWnrg88Q=
github.com/spf13/cobra v1.4.0/go.mod h1:Wo4iy3BUC+X2Fybo0PDqwJIv3dNRiZLHQymsfxlB84g=
github.com/spf13/cobra v1.5.0 h1:X+jTBEBqF0bHN+9cSMgmfuvv2VHJ9ezmFNf9Y/XstYU=
github.com/spf13/cobra v1.5.0/go.mod h1:dWXEIy2H428czQCjInthrTRUg7yKbok+2Qi/yBIJoUM=
github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
Expand All @@ -29,6 +36,8 @@ github.com/vbauerster/mpb/v7 v7.4.2/go.mod h1:UmOiIUI8aPqWXIps0ciik3RKMdzx7+ooQp
golang.org/x/exp v0.0.0-20191002040644-a1355ae1e2c3 h1:n9HxLrNxWWtEb1cA950nuEEj3QnKbtsCJ6KjcgisNUs=
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a h1:dGzPydgVsqGcTRVwiLJ1jVbufYwmzD3LfVPLKsKg+0k=
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20220818161305-2296e01440c6 h1:Sx/u41w+OwrInGdEckYmEuU5gHoGSL4QbDz3S9s6j4U=
golang.org/x/sys v0.0.0-20220818161305-2296e01440c6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
gonum.org/v1/gonum v0.11.0 h1:f1IJhK4Km5tBJmaiJXtk/PkL4cdVX6J+tGiM187uT5E=
gonum.org/v1/gonum v0.11.0/go.mod h1:fSG4YDCxxUZQJ7rKsQrj0gMOg00Il0Z96/qMA4bVQhA=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
Expand Down

0 comments on commit 2eb8fbf

Please sign in to comment.