aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Alexander <neilalexander@users.noreply.github.com>2022-01-28 16:24:01 +0000
committerGitHub <noreply@github.com>2022-01-28 16:24:01 +0000
commit2c3dd48bb2daf078fe2e36c3a06a995fcd693d20 (patch)
tree8a43c8917a72ab13c275d9bd0cefb1086e4fdd1c
parentbde7c1fd8ca040f61f339c96c6589d57feca3dd9 (diff)
Require Go 1.16 (#2122)
-rw-r--r--README.md2
-rw-r--r--cmd/dendrite-demo-yggdrasil/README.md2
-rw-r--r--docs/INSTALL.md2
-rw-r--r--go.mod2
4 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 3ec9f029..a077788c 100644
--- a/README.md
+++ b/README.md
@@ -31,7 +31,7 @@ If you have further questions, please take a look at [our FAQ](docs/FAQ.md) or j
## Requirements
-To build Dendrite, you will need Go 1.15 or later.
+To build Dendrite, you will need Go 1.16 or later.
For a usable federating Dendrite deployment, you will also need:
- A domain name (or subdomain)
diff --git a/cmd/dendrite-demo-yggdrasil/README.md b/cmd/dendrite-demo-yggdrasil/README.md
index c471cef2..94633357 100644
--- a/cmd/dendrite-demo-yggdrasil/README.md
+++ b/cmd/dendrite-demo-yggdrasil/README.md
@@ -1,6 +1,6 @@
# Yggdrasil Demo
-This is the Dendrite Yggdrasil demo! It's easy to get started - all you need is Go 1.15 or later.
+This is the Dendrite Yggdrasil demo! It's easy to get started - all you need is Go 1.16 or later.
To run the homeserver, start at the root of the Dendrite repository and run:
diff --git a/docs/INSTALL.md b/docs/INSTALL.md
index 2afb43c6..686ae1db 100644
--- a/docs/INSTALL.md
+++ b/docs/INSTALL.md
@@ -27,7 +27,7 @@ use in production environments just yet!
Dendrite requires:
-* Go 1.15 or higher
+* Go 1.16 or higher
* PostgreSQL 12 or higher (if using PostgreSQL databases, not needed for SQLite)
If you want to run a polylith deployment, you also need:
diff --git a/go.mod b/go.mod
index 6d482bd6..5ddcf980 100644
--- a/go.mod
+++ b/go.mod
@@ -72,4 +72,4 @@ require (
nhooyr.io/websocket v1.8.7
)
-go 1.15
+go 1.16