Skip to content

Commit

Permalink
Release v0.16.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderkiel committed Jul 22, 2024
1 parent 41627be commit a13cd93
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: "Build"

on:
push:
branches: [ master ]
branches: [ main ]
tags: [ "*" ]
pull_request:
branches: [ master ]
branches: [ main ]

jobs:

Expand Down
2 changes: 1 addition & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ go test ./...
## Build Releases

```sh
VERSION=0.16.0 ./build-releases.sh
VERSION=0.16.1 ./build-releases.sh
```
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,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:

```sh
curl -LO https://github.com/samply/blazectl/releases/download/v0.16.0/blazectl-0.16.0-linux-amd64.tar.gz
curl -LO https://github.com/samply/blazectl/releases/download/v0.16.1/blazectl-0.16.1-linux-amd64.tar.gz
```

1. Untar the binary:

```sh
tar xzf blazectl-0.16.0-linux-amd64.tar.gz
tar xzf blazectl-0.16.1-linux-amd64.tar.gz
```

1. Move the binary in to your PATH.
Expand All @@ -47,13 +47,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:

```sh
curl -LO https://github.com/samply/blazectl/releases/download/v0.16.0/blazectl-0.16.0-darwin-amd64.tar.gz
curl -LO https://github.com/samply/blazectl/releases/download/v0.16.1/blazectl-0.16.1-darwin-amd64.tar.gz
```

1. Untar the binary:

```sh
tar xzf blazectl-0.16.0-darwin-amd64.tar.gz
tar xzf blazectl-0.16.1-darwin-amd64.tar.gz
```

1. Move the binary in to your PATH.
Expand All @@ -73,13 +73,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:

```sh
curl -LO https://github.com/samply/blazectl/releases/download/v0.16.0/blazectl-0.16.0-darwin-arm64.tar.gz
curl -LO https://github.com/samply/blazectl/releases/download/v0.16.1/blazectl-0.16.1-darwin-arm64.tar.gz
```

1. Untar the binary:

```sh
tar xzf blazectl-0.16.0-darwin-arm64.tar.gz
tar xzf blazectl-0.16.1-darwin-arm64.tar.gz
```

1. Move the binary in to your PATH.
Expand All @@ -99,13 +99,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:

```sh
curl -LO https://github.com/samply/blazectl/releases/download/v0.16.0/blazectl-0.16.0-linux-arm64.tar.gz
curl -LO https://github.com/samply/blazectl/releases/download/v0.16.1/blazectl-0.16.1-linux-arm64.tar.gz
```

1. Untar the binary:

```sh
tar xzf blazectl-0.16.0-linux-arm64.tar.gz
tar xzf blazectl-0.16.1-linux-arm64.tar.gz
```

1. Move the binary in to your PATH.
Expand Down Expand Up @@ -310,10 +310,10 @@ 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.16.0/blazectl-0.16.0-windows-amd64.zip>
[3]: <https://github.com/samply/blazectl/releases/download/v0.16.1/blazectl-0.16.1-windows-amd64.zip>
[4]: <https://github.com/samply/blaze>
[5]: <https://github.com/synthetichealth/synthea>
[6]: <https://github.com/tsenart/vegeta>
[7]: <https://en.wikipedia.org/wiki/Gzip>
[8]: <https://en.wikipedia.org/wiki/Bzip2>
[9]: <https://github.com/samply/blaze/blob/master/docs/cql-queries/blazectl.md>
[9]: <https://github.com/samply/blaze/blob/main/docs/cql-queries/blazectl.md>
2 changes: 1 addition & 1 deletion cmd/evaluateMeasure.go
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ evaluates that measure and returns the measure report.
Examples:
blazectl evaluate-measure --server "http://localhost:8080/fhir" stratifier-condition-code.yml
See: https://github.com/samply/blaze/blob/master/docs/cql-queries/blazectl.md`,
See: https://github.com/samply/blaze/blob/main/docs/cql-queries/blazectl.md`,
Args: func(cmd *cobra.Command, args []string) error {
if len(args) < 1 {
return errors.New("requires a measure-file argument")
Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ var rootCmd = &cobra.Command{
Currently you can upload transaction bundles from a directory, download
and count resources and evaluate measures.`,
Version: "0.16.0",
Version: "0.16.1",
}

// Execute adds all child commands to the root command and sets flags appropriately.
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ require (
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/sys v0.21.0 // indirect
golang.org/x/sys v0.22.0 // indirect
)
4 changes: 4 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ github.com/mattn/go-runewidth v0.0.14 h1:+xnbZSEeDbOIg5/mE6JF0w6n9duR1l3/WmbinWV
github.com/mattn/go-runewidth v0.0.14/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
github.com/mattn/go-runewidth v0.0.15 h1:UNAjwbU9l54TA3KzvqLGxwWjHmMgBUVhBiTjelZgg3U=
github.com/mattn/go-runewidth v0.0.15/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
github.com/mattn/go-runewidth v0.0.16 h1:E5ScNMtiwvlvB5paMFdw9p4kSQzbXFikJ5SQO6TULQc=
github.com/mattn/go-runewidth v0.0.16/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=
Expand Down Expand Up @@ -93,6 +95,8 @@ golang.org/x/sys v0.20.0 h1:Od9JTbYCk261bKm4M/mw7AklTlFYIa0bIp9BgSm1S8Y=
golang.org/x/sys v0.20.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/sys v0.21.0 h1:rF+pYz3DAGSQAxAu1CbC7catZg4ebC4UIeIhKxBZvws=
golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/sys v0.22.0 h1:RI27ohtqKCnwULzJLqkv897zojh5/DwS/ENaMzUOaWI=
golang.org/x/sys v0.22.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
gonum.org/v1/gonum v0.11.0 h1:f1IJhK4Km5tBJmaiJXtk/PkL4cdVX6J+tGiM187uT5E=
gonum.org/v1/gonum v0.11.0/go.mod h1:fSG4YDCxxUZQJ7rKsQrj0gMOg00Il0Z96/qMA4bVQhA=
gonum.org/v1/gonum v0.12.0 h1:xKuo6hzt+gMav00meVPUlXwSdoEJP46BR+wdxQEFK2o=
Expand Down

0 comments on commit a13cd93

Please sign in to comment.