Skip to content

Commit 8fe0e73

Browse files
committed
Release v0.2.1
* Make sure all version values match - should probably make this more robust * Add missing changes to v0.2.0 log entry * Remove 'updatepackages' make target
1 parent eb06bc7 commit 8fe0e73

5 files changed

Lines changed: 11 additions & 10 deletions

File tree

ChangeLog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Trustydns Change Log
2+
### v0.2.1 -- 2021-03-23
3+
* Make sure all version values match - should probably make this more robust
4+
* Add missing changes to v0.2.0 log entry
5+
* Remove 'updatepackages' make target
26
### v0.2.0 -- 2021-03-21
7+
* Cross-compiles and runs on Windows
8+
* Pull request #3 "Use time.Since" from @muesli
9+
* Set trustydns-proxy default padding option (-p) to false as documented
310
* Move to go 1.16 and use go modules with semantic version tagging
411
For now I'll retain the 'updatepackages' make target but it's superflous with go modules
512
### v0.1.0 -- 2019-06-28

Makefile

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cmddirs=cmd/trustydns-dig cmd/trustydns-proxy cmd/trustydns-server
1111
commands=cmd/trustydns-server/trustydns-server cmd/trustydns-proxy/trustydns-proxy cmd/trustydns-dig/trustydns-dig
1212

1313
targets:
14-
@echo "Installation targets: 'updatepackages' 'clean', 'all', and 'install'"
14+
@echo "Installation targets: 'clean', 'all', and 'install'"
1515
@echo "Developer targets: 'clean', 'fmt' and 'test'"
1616
@echo "Cross-platform targets: 'mips64', 'debian64', 'pi3b', 'freebsd64', 'windowsamd64' and 'windows386'"
1717

@@ -41,12 +41,6 @@ critic:
4141
fmt:
4242
gofmt -s -w `find . -name '*.go' -type f -print`
4343

44-
.PHONY: updatepackages
45-
updatepackages:
46-
go get -u golang.org/x/net/http2
47-
go get -u github.com/miekg/dns
48-
go get -u golang.org/x/sys/unix
49-
5044
.PHONY: install
5145
install: $(commands)
5246
install -d -o 0 -g 0 -m a=rx $(daemondest) $(cmddest)

internal/constants/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ func createReadOnlyConstants() {
6060
DigProgramName: "trustydns-dig",
6161
ProxyProgramName: "trustydns-proxy",
6262
ServerProgramName: "trustydns-server",
63-
Version: "v0.1.0",
63+
Version: "v0.2.1",
6464
PackageName: "Trusty DNS Over HTTPS",
6565
PackageURL: "https://github.com/markdingo/trustydns",
6666
RFC: "RFC8484",

tools/tdt-analyze-proxylog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use Getopt::Std;
1616
# change occurs without *some* changes to the stats reporting. At least in the early stages of this
1717
# package.
1818

19-
my $expectedVersion = "v0.1.0";
19+
my $expectedVersion = "v0.2.1";
2020
my $currentVersion = "";
2121

2222
##########

tools/tdt-analyze-serverlog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use Getopt::Std;
1616
# change occurs without *some* changes to the stats reporting. At least in the early stages of this
1717
# package.
1818

19-
my $expectedVersion = "v0.1.0";
19+
my $expectedVersion = "v0.2.1";
2020
my $currentVersion = "";
2121

2222
##########

0 commit comments

Comments
 (0)