Skip to content

Commit

Permalink
prepare 0.21.2 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
bluejekyll committed Mar 30, 2022
1 parent adc743b commit f91b45f
Show file tree
Hide file tree
Showing 11 changed files with 42 additions and 18 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,30 @@ This project adheres to [Semantic Versioning](https://semver.org/).

All notes should be prepended with the location of the change, e.g. `(proto)` or `(resolver)`.

## 0.21.2

### Added

- (proto) add PartialEq+Hash derives, #1661 by @leshow

### Fixed

- (server) fix panic when tcp connect goes away before handling, #1668
- (server) crates/server, InMemoryStore: Use a RwLock instead of a Mutex to manage inner storage, #1665 by @erikh
- (all) fix audit regex failure, #1658
- (resolver) Stop searching for additional records when encountering a name already seen, #1657 by @Mossop
- (proto) fix time txt parsing in SOA records, #1656

### Removed

- (all) remove old crates (the ones moved into proto, tag v0.21.1 can get if needed for crates.io), #1655

### Changed

- (resolver) keep any address records included in the response to an NS query, #1672 by @db48x
- (resolver) force forwarder to preserve_intermediates, #1660 by @vlmutolo
- (resolver) make constructors for AsyncResolver with custom providers public, #1654 by @Noah-Kennedy

## 0.21.1

### Fixed
Expand Down
18 changes: 9 additions & 9 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 bin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns"
version = "0.21.1"
version = "0.21.2"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion crates/async-std-resolver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "async-std-resolver"
version = "0.21.1"
version = "0.21.2"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion crates/client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-client"
version = "0.21.1"
version = "0.21.2"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion crates/proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-proto"
version = "0.21.1"
version = "0.21.2"
edition = "2018"
authors = ["Benjamin Fry <benjaminfry@me.com>"]

Expand Down
2 changes: 1 addition & 1 deletion crates/resolver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-resolver"
version = "0.21.1"
version = "0.21.2"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion crates/server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-server"
version = "0.21.1"
version = "0.21.2"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion tests/compatibility-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-compatibility"
version = "0.21.1"
version = "0.21.2"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion tests/integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-integration"
version = "0.21.1"
version = "0.21.2"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-util"
version = "0.21.1"
version = "0.21.2"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down

0 comments on commit f91b45f

Please sign in to comment.