From 846ad7c30ea677842c8a78cd2e793d9e7219f9ec Mon Sep 17 00:00:00 2001
From: Frank Duncan <frank@kank.net>
Date: Mon, 19 Sep 2022 12:39:44 -0500
Subject: [PATCH] Releasing 0.2.0

---
 RELEASING.md   | 14 ++++++++++++++
 extension.json |  2 +-
 2 files changed, 15 insertions(+), 1 deletion(-)
 create mode 100644 RELEASING.md

diff --git a/RELEASING.md b/RELEASING.md
new file mode 100644
index 0000000..0be34ed
--- /dev/null
+++ b/RELEASING.md
@@ -0,0 +1,14 @@
+# Releasing
+
+When releasing a new version, a few things need to happen:
+
+* Update the variable in extension.json
+  * `version` attribute in [extension/Torque/extension.json]
+* commit the version update
+* tag the release in git
+* push to origin
+
+* upload a new version of the extension to gitlab via
+  * create via `tar -cvzf ~/Deliberation-${VERSION}.tar.gz --exclude=.git -C .. Deliberation`
+  * create a release from the tag at https://code.librehq.com/ots/mediawiki/Deliberation/-/tags/${VERSION}
+  * upload the tar.gz to that release
diff --git a/extension.json b/extension.json
index d46bf06..29bf838 100644
--- a/extension.json
+++ b/extension.json
@@ -1,6 +1,6 @@
 {
 	"name": "Deliberation",
-	"version": "0.1.0",
+	"version": "0.2.0",
 	"author": [
 		"Open Tech Strategies"
 	],
-- 
GitLab