From adcb319bd26b1821ba035bfbbd129a94a2e682f6 Mon Sep 17 00:00:00 2001 From: Simone Basso Date: Sat, 1 Mar 2025 08:54:07 +0100 Subject: [PATCH] doc(README.md): document minimum required Go version While there, use `go1.23` in the `go.mod` file. --- README.md | 6 ++++++ go.mod | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b1cf5bc..6395b12 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,12 @@ by providing building blocks for DNS queries and responses. It uses the widely-used [miekg/dns](https://github.com/miekg/dns) library for DNS message parsing and serialization. +## Minimum Required Go Version + +We maintain compatibility with the oldest supported version of Go as +documented by the [Go Release Policy](https://golang.org/doc/devel/release.html#policy) +and update our minimum required version of Go as needed. + ## Installation ```sh diff --git a/go.mod b/go.mod index f4f51bd..b420b65 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/rbmk-project/dnscore -go 1.23.3 +go 1.23 require ( github.com/miekg/dns v1.1.63