Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.4.0 #375

Merged
merged 1 commit into from
Mar 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# [Unreleased]

# [2.4.0] - 2022-03-07

* Verify git tag on release (#347, @miry)
* Fix MacOS 12 tests for go17 with -race flag (#351, @strech)
* Rename `testing/` and `bin/` folders (#354, @strech)
Expand Down Expand Up @@ -169,7 +171,8 @@

Initial public release.

[Unreleased]: https://github.com/Shopify/toxiproxy/compare/v2.3.0...HEAD
[Unreleased]: https://github.com/Shopify/toxiproxy/compare/v2.4.0...HEAD
[2.4.0]: https://github.com/Shopify/toxiproxy/compare/v2.3.0...v2.4.0
[2.3.0]: https://github.com/Shopify/toxiproxy/compare/v2.2.0...v2.3.0
[2.2.0]: https://github.com/Shopify/toxiproxy/compare/v2.1.7...v2.2.0
[2.1.7]: https://github.com/Shopify/toxiproxy/compare/v2.1.6...v2.1.7
Expand Down
4 changes: 2 additions & 2 deletions scripts/test-release
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ docker run -v "$(PWD)"/dist:/dist --pull always --rm -it ubuntu bash -c \
/usr/bin/toxiproxy-cli --version \
| grep -o -e 'toxiproxy-cli version ${VERSION}'"

docker run -v "$(PWD)"/dist:/dist --pull always --rm -it centos bash -c \
docker run -v "$(PWD)"/dist:/dist --pull always --rm -it fedora bash -c \
"set -xe;
yum install -y /dist/toxiproxy_*_linux_${ARCH}.rpm;
yum localinstall -y /dist/toxiproxy_*_linux_${ARCH}.rpm;
ls -1 /usr/bin/toxiproxy-*;
/usr/bin/toxiproxy-server --version;
/usr/bin/toxiproxy-server --version \
Expand Down