From 0fef955b28dd6435ec1b3be62ddf309a351ef22f Mon Sep 17 00:00:00 2001
From: Faelar <faelar@gmail.com>
Date: Mon, 17 Aug 2020 13:59:35 +0200
Subject: [PATCH] Fix license.

---
 .gitea/PULL_REQUEST_TEMPLATE.md | 2 +-
 Cargo.toml                      | 2 +-
 Dockerfile                      | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitea/PULL_REQUEST_TEMPLATE.md b/.gitea/PULL_REQUEST_TEMPLATE.md
index 7b15cba8..38cef90b 100644
--- a/.gitea/PULL_REQUEST_TEMPLATE.md
+++ b/.gitea/PULL_REQUEST_TEMPLATE.md
@@ -1 +1 @@
-- [ ] I agree to release my code and all other changes of this PR under the AGPL-3.0 license
+- [ ] I agree to release my code and all other changes of this PR under the AGPL-3.0-only license
diff --git a/Cargo.toml b/Cargo.toml
index 42ca8b56..90633ded 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "conduit"
 description = "A Matrix homeserver written in Rust"
-license = "AGPL-3.0"
+license = "AGPL-3.0-only"
 authors = ["timokoesters <timo@koesters.xyz>"]
 homepage = "https://conduit.rs"
 repository = "https://git.koesters.xyz/timo/conduit"
diff --git a/Dockerfile b/Dockerfile
index 7aa05c0f..fa4b16d6 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -54,7 +54,7 @@ LABEL org.opencontainers.image.created=${CREATED} \
       org.opencontainers.image.revision=${GIT_REF} \
       org.opencontainers.image.source="https://git.koesters.xyz/timo/conduit.git" \
       org.opencontainers.image.documentation.="" \
-      org.opencontainers.image.licenses="AGPL-3.0" \
+      org.opencontainers.image.licenses="AGPL-3.0-only" \
       org.opencontainers.image.ref.name="" \
       org.label-schema.docker.build="docker build . -t conduit_homeserver:latest --build-arg CREATED=$(date -u +'%Y-%m-%dT%H:%M:%SZ') --build-arg VERSION=$(grep -m1 -o '[0-9].[0-9].[0-9]' Cargo.toml)" \
       maintainer="Weasy666"