diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-01-28 16:24:01 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-28 16:24:01 +0000 |
commit | 2c3dd48bb2daf078fe2e36c3a06a995fcd693d20 (patch) | |
tree | 8a43c8917a72ab13c275d9bd0cefb1086e4fdd1c | |
parent | bde7c1fd8ca040f61f339c96c6589d57feca3dd9 (diff) |
Require Go 1.16 (#2122)
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | cmd/dendrite-demo-yggdrasil/README.md | 2 | ||||
-rw-r--r-- | docs/INSTALL.md | 2 | ||||
-rw-r--r-- | go.mod | 2 |
4 files changed, 4 insertions, 4 deletions
@@ -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: @@ -72,4 +72,4 @@ require ( nhooyr.io/websocket v1.8.7 ) -go 1.15 +go 1.16 |