Skip to content

Commit 4440e58

Browse files
committed
v0.9.0
1 parent f6ac6d0 commit 4440e58

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and 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

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dns-bench"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2021"
55
authors = ["Alexandr Garbuzov <qwerty541zxc@gmail.com>"]
66
description = "Find the fastest DNS in your location to improve internet browsing experience."

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ $ dns-bench [OPTIONS]
114114
Run 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

120120
Also you can remove tag option to install the latest development version.
@@ -130,25 +130,25 @@ $ dns-bench [OPTIONS]
130130
Run 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

136136
Now 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

142142
If 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

148148
In 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

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM 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

55
CMD ["dns-bench"]

docker/OVERVIEW.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,25 +61,25 @@ This repository provides DNS benchmarking command line tool written in Rust. It
6161
Run 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

6767
Now 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

7373
If 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

7979
In 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

docker/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
docker build -t qwerty541/dns-bench:0.8.0 .
1+
docker build -t qwerty541/dns-bench:0.9.0 .

docker/push.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
docker push qwerty541/dns-bench:0.8.0
1+
docker push qwerty541/dns-bench:0.9.0

0 commit comments

Comments
 (0)