File tree Expand file tree Collapse file tree 8 files changed +15
-15
lines changed
Expand file tree Collapse file tree 8 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8- ## Unreleased
8+ ## v0.9.0 (16.04.2025)
99
1010### Added
1111
Original file line number Diff line number Diff line change 11[package ]
22name = " dns-bench"
3- version = " 0.8 .0"
3+ version = " 0.9 .0"
44edition = " 2021"
55authors = [" Alexandr Garbuzov <qwerty541zxc@gmail.com>" ]
66description = " Find the fastest DNS in your location to improve internet browsing experience."
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ $ dns-bench [OPTIONS]
114114Run the following command and wait until the crate is compiled:
115115
116116``` sh
117- $ cargo install --git https://github.com/qwerty541/dns-bench.git --tag v0.8 .0 dns-bench
117+ $ cargo install --git https://github.com/qwerty541/dns-bench.git --tag v0.9 .0 dns-bench
118118```
119119
120120Also you can remove tag option to install the latest development version.
@@ -130,25 +130,25 @@ $ dns-bench [OPTIONS]
130130Run the following command to pull the image:
131131
132132``` sh
133- $ docker pull qwerty541/dns-bench:0.8 .0
133+ $ docker pull qwerty541/dns-bench:0.9 .0
134134```
135135
136136Now you can run this tool inside the container:
137137
138138``` sh
139- $ docker run --rm -it --name dns-bench qwerty541/dns-bench:0.8 .0
139+ $ docker run --rm -it --name dns-bench qwerty541/dns-bench:0.9 .0
140140```
141141
142142If you want to pass some options, you can do it like this:
143143
144144``` sh
145- $ docker run --rm -it --name dns-bench qwerty541/dns-bench:0.8 .0 /bin/bash -c " dns-bench --requests 20 --domain microsoft.com --style re-structured-text"
145+ $ docker run --rm -it --name dns-bench qwerty541/dns-bench:0.9 .0 /bin/bash -c " dns-bench --requests 20 --domain microsoft.com --style re-structured-text"
146146```
147147
148148In case you want to use custom servers list, you have to mount the file with custom servers list to the container and pass the path to the file as an argument:
149149
150150``` sh
151- $ docker run --rm -it --name dns-bench --volume /home/alexandr/projects/dns-bench/examples/ipv4-custom-servers-example.txt:/ipv4-custom-servers-example.txt qwerty541/dns-bench:0.8 .0 /bin/bash -c " dns-bench --custom-servers-file /ipv4-custom-servers-example.txt"
151+ $ docker run --rm -it --name dns-bench --volume /home/alexandr/projects/dns-bench/examples/ipv4-custom-servers-example.txt:/ipv4-custom-servers-example.txt qwerty541/dns-bench:0.9 .0 /bin/bash -c " dns-bench --custom-servers-file /ipv4-custom-servers-example.txt"
152152```
153153
154154## Options
Original file line number Diff line number Diff line change 11FROM rust:1.85.1
22
3- RUN cargo install --git https://github.com/qwerty541/dns-bench.git --tag v0.8 .0 dns-bench
3+ RUN cargo install --git https://github.com/qwerty541/dns-bench.git --tag v0.9 .0 dns-bench
44
55CMD ["dns-bench" ]
Original file line number Diff line number Diff line change @@ -61,25 +61,25 @@ This repository provides DNS benchmarking command line tool written in Rust. It
6161Run the following command to pull the image:
6262
6363``` sh
64- $ docker pull qwerty541/dns-bench:0.8 .0
64+ $ docker pull qwerty541/dns-bench:0.9 .0
6565```
6666
6767Now you can run this tool inside the container:
6868
6969``` sh
70- $ docker run --rm -it --name dns-bench qwerty541/dns-bench:0.8 .0
70+ $ docker run --rm -it --name dns-bench qwerty541/dns-bench:0.9 .0
7171```
7272
7373If you want to pass some options, you can do it like this:
7474
7575``` sh
76- $ docker run --rm -it --name dns-bench qwerty541/dns-bench:0.8 .0 /bin/bash -c " dns-bench --requests 20 --domain microsoft.com --style re-structured-text"
76+ $ docker run --rm -it --name dns-bench qwerty541/dns-bench:0.9 .0 /bin/bash -c " dns-bench --requests 20 --domain microsoft.com --style re-structured-text"
7777```
7878
7979In case you want to use custom servers list, you have to mount the file with custom servers list to the container and pass the path to the file as an argument:
8080
8181``` sh
82- $ docker run --rm -it --name dns-bench --volume /home/alexandr/projects/dns-bench/examples/ipv4-custom-servers-example.txt:/ipv4-custom-servers-example.txt qwerty541/dns-bench:0.8 .0 /bin/bash -c " dns-bench --custom-servers-file /ipv4-custom-servers-example.txt"
82+ $ docker run --rm -it --name dns-bench --volume /home/alexandr/projects/dns-bench/examples/ipv4-custom-servers-example.txt:/ipv4-custom-servers-example.txt qwerty541/dns-bench:0.9 .0 /bin/bash -c " dns-bench --custom-servers-file /ipv4-custom-servers-example.txt"
8383```
8484
8585# Options
Original file line number Diff line number Diff line change 1- docker build -t qwerty541/dns-bench:0.8 .0 .
1+ docker build -t qwerty541/dns-bench:0.9 .0 .
Original file line number Diff line number Diff line change 1- docker push qwerty541/dns-bench:0.8 .0
1+ docker push qwerty541/dns-bench:0.9 .0
You can’t perform that action at this time.
0 commit comments