Skip to content

Commit

Permalink
Prepare for release 0.2.0. (#28)
Browse files Browse the repository at this point in the history
Breaking changes

* Renamed the `man` command to `help`. ([18])
* The default query type for the `query` command is now `AAAA`. ([#4])

New

* Added a new `lookup` command. ([#10])
* Added new output formats `friendly` and `table`. The `friendly` format
  is the new default format. ([#20], [#27])
* Output a placeholder for unparseable record data rather than erroring
  out. ([#22])
* Flags can now be set and unset in the `query` command. ([#23])
* The `query` command now also supports TLS. ([#24])
* IP addresses can now be used as the query name of the `query` command.
  They will be translated into the standard reverse pointer names. In this
  case, if no explicit query type is given, `PTR` will be used. ([#25])

Other changes

* Increased minimum supported Rust version to 1.78.
* Binary packages are now built and distributed via the [NLnetLabs Package
  repository](https://nlnetlabs.nl/packages/).
  • Loading branch information
partim authored Jun 20, 2024
1 parent 13bfb69 commit 8d606bb
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 38 deletions.
67 changes: 33 additions & 34 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]

Check notice on line 1 in Cargo.toml

View workflow job for this annotation

GitHub Actions / package / pkg (dnsi, ubuntu:xenial, x86_64)

Cargo deb variant 'ubuntu-xenial' not found, using defaults instead.

Check notice on line 1 in Cargo.toml

View workflow job for this annotation

GitHub Actions / package / pkg (dnsi, debian:buster, x86_64)

Cargo deb variant 'debian-buster' not found, using defaults instead.

Check notice on line 1 in Cargo.toml

View workflow job for this annotation

GitHub Actions / package / pkg (rtrtr, debian:bullseye, armv7-unknown-linux-musleabihf)

Cargo deb variant 'debian-bullseye-armv7-unknown-linux-musleabihf' not found, using defaults instead.

Check notice on line 1 in Cargo.toml

View workflow job for this annotation

GitHub Actions / package / pkg (dnsi, debian:buster, arm-unknown-linux-musleabihf)

Cargo deb variant 'debian-buster-arm-unknown-linux-musleabihf' not found, using defaults instead.

Check notice on line 1 in Cargo.toml

View workflow job for this annotation

GitHub Actions / package / pkg (dnsi, ubuntu:bionic, x86_64)

Cargo deb variant 'ubuntu-bionic' not found, using defaults instead.

Check notice on line 1 in Cargo.toml

View workflow job for this annotation

GitHub Actions / package / pkg (dnsi, debian:bookworm, x86_64)

Cargo deb variant 'debian-bookworm' not found, using defaults instead.

Check notice on line 1 in Cargo.toml

View workflow job for this annotation

GitHub Actions / package / pkg (dnsi, ubuntu:focal, x86_64)

Cargo deb variant 'ubuntu-focal' not found, using defaults instead.

Check notice on line 1 in Cargo.toml

View workflow job for this annotation

GitHub Actions / package / pkg (dnsi, debian:bullseye, x86_64)

Cargo deb variant 'debian-bullseye' not found, using defaults instead.

Check notice on line 1 in Cargo.toml

View workflow job for this annotation

GitHub Actions / package / pkg (dnsi, ubuntu:jammy, x86_64)

Cargo deb variant 'ubuntu-jammy' not found, using defaults instead.
name = "dnsi"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
rust-version = "1.78.0"
authors = ["NLnet Labs <[email protected]>"]
Expand Down
6 changes: 3 additions & 3 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Change Log

## Unreleased next version
## 0.2.0

Released on 2024-06-20.

Breaking changes

Expand All @@ -20,8 +22,6 @@ New
They will be translated into the standard reverse pointer names. In this
case, if no explicit query type is given, `PTR` will be used. ([#25])

Bug fixes

Other changes

* Increased minimum supported Rust version to 1.78.
Expand Down

0 comments on commit 8d606bb

Please sign in to comment.