From 84537cc66bfa1d54178869761dd6890de6425047 Mon Sep 17 00:00:00 2001
From: Philipp Wullstein-Kammler <111539239+phiwuu@users.noreply.github.com>
Date: Thu, 5 Dec 2024 09:10:21 +0100
Subject: [PATCH] LOBSTER Release 0.9.20 (#141)

---
 CHANGELOG.md       | 2 +-
 lobster/version.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index b3bca2f8..bee4066d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,7 +3,7 @@
 ## Changelog
 
 
-### 0.9.20-dev
+### 0.9.20
 
 * Add `--compile-commands` flag to `lobster-cpp`. This allows to specify a path to the
   compile command database and is effectively a wrapper around the `-p` argument of
diff --git a/lobster/version.py b/lobster/version.py
index 4080b3a0..d5701c52 100644
--- a/lobster/version.py
+++ b/lobster/version.py
@@ -18,7 +18,7 @@
 # <https://www.gnu.org/licenses/>.
 
 VERSION_TUPLE = (0, 9, 20)
-VERSION_SUFFIX = "dev"
+VERSION_SUFFIX = ""
 
 LOBSTER_VERSION = ("%u.%u.%u" % VERSION_TUPLE) + (
     "-%s" % VERSION_SUFFIX if VERSION_SUFFIX else ""