2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
# [ Unreleased]
2
2
3
+ # [ 2.4.0] - 2022-03-07
4
+
3
5
* Verify git tag on release (#347 , @miry )
4
6
* Fix MacOS 12 tests for go17 with -race flag (#351 , @strech )
5
7
* Rename ` testing/ ` and ` bin/ ` folders (#354 , @strech )
169
171
170
172
Initial public release.
171
173
172
- [ Unreleased ] : https://github.com/Shopify/toxiproxy/compare/v2.3.0...HEAD
174
+ [ Unreleased ] : https://github.com/Shopify/toxiproxy/compare/v2.4.0...HEAD
175
+ [ 2.4.0 ] : https://github.com/Shopify/toxiproxy/compare/v2.3.0...v2.4.0
173
176
[ 2.3.0 ] : https://github.com/Shopify/toxiproxy/compare/v2.2.0...v2.3.0
174
177
[ 2.2.0 ] : https://github.com/Shopify/toxiproxy/compare/v2.1.7...v2.2.0
175
178
[ 2.1.7 ] : https://github.com/Shopify/toxiproxy/compare/v2.1.6...v2.1.7
Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ docker run -v "$(PWD)"/dist:/dist --pull always --rm -it ubuntu bash -c \
22
22
/usr/bin/toxiproxy-cli --version \
23
23
| grep -o -e 'toxiproxy-cli version ${VERSION} '"
24
24
25
- docker run -v " $( PWD) " /dist:/dist --pull always --rm -it centos bash -c \
25
+ docker run -v " $( PWD) " /dist:/dist --pull always --rm -it fedora bash -c \
26
26
" set -xe;
27
- yum install -y /dist/toxiproxy_*_linux_${ARCH} .rpm;
27
+ yum localinstall -y /dist/toxiproxy_*_linux_${ARCH} .rpm;
28
28
ls -1 /usr/bin/toxiproxy-*;
29
29
/usr/bin/toxiproxy-server --version;
30
30
/usr/bin/toxiproxy-server --version \
0 commit comments