Skip to content

Commit

Permalink
release v0.17.3
Browse files Browse the repository at this point in the history
  • Loading branch information
zoncoen committed Apr 14, 2024
1 parent 860e563 commit 5e2aae6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# CHANGELOG

<a name="v0.17.3"></a>
## [v0.17.3] - 2024-04-14
### Bug Fixes
- **release:** ensure the Docker image exists ([#411](https://github.com/zoncoen/scenarigo/issues/411))

<a name="v0.17.2"></a>
## [v0.17.2] - 2024-03-07
## [v0.17.2] - 2024-03-21
### Features
- add an option to output test summary at last ([#395](https://github.com/zoncoen/scenarigo/issues/395))

Expand Down Expand Up @@ -407,6 +412,7 @@ change protocl.Protocol interface
- first release


[v0.17.3]: https://github.com/zoncoen/scenarigo/compare/v0.17.2...v0.17.3
[v0.17.2]: https://github.com/zoncoen/scenarigo/compare/v0.17.1...v0.17.2
[v0.17.1]: https://github.com/zoncoen/scenarigo/compare/v0.17.0...v0.17.1
[v0.17.0]: https://github.com/zoncoen/scenarigo/compare/v0.16.2...v0.17.0
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ steps:
### go install command (recommend)
```shell
$ go install github.com/zoncoen/scenarigo/cmd/[email protected].2
$ go install github.com/zoncoen/scenarigo/cmd/[email protected].3
```

### from release page
Expand All @@ -53,7 +53,7 @@ You can download the latest command into the `./scenarigo` directory with the fo

```shell
$ version=$(curl -s https://api.github.com/repos/zoncoen/scenarigo/releases/latest | jq -r '.tag_name') && \
go_version='go1.22.0' && \
go_version='go1.22.2' && \
curl -sLJ https://github.com/zoncoen/scenarigo/releases/download/${version}/scenarigo_${version}_${go_version}_$(uname)_$(uname -m).tar.gz -o scenarigo.tar.gz && \
mkdir ./scenarigo && tar -zxvf ./scenarigo.tar.gz -C ./scenarigo && rm scenarigo.tar.gz
```
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
)

var (
version = "0.17.2"
version = "0.17.3"
revision = "dev"
info, ok = debug.ReadBuildInfo()
)
Expand Down

0 comments on commit 5e2aae6

Please sign in to comment.