From edb675eac84ebaf70129755187743a90e994908a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ren=C3=A9=20Dudfield?= <renesd@gmail.com>
Date: Sun, 3 Dec 2023 23:16:20 +0100
Subject: [PATCH 1/2] github: Fix python-publish to install dependencies

---
 .github/workflows/python-publish.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml
index bdaab28..5472aab 100644
--- a/.github/workflows/python-publish.yml
+++ b/.github/workflows/python-publish.yml
@@ -29,6 +29,7 @@ jobs:
     - name: Install dependencies
       run: |
         python -m pip install --upgrade pip
+        if [ -f requirements.dev.txt ]; then python -m pip install -r requirements.dev.txt; fi
         pip install build
     - name: Build package
       run: python -m build

From 33351f3f9f04c9c74ad09eaa0db7e0f22b2489fb Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ren=C3=A9=20Dudfield?= <renesd@gmail.com>
Date: Sun, 3 Dec 2023 23:16:43 +0100
Subject: [PATCH 2/2] v0.2.2

---
 stuntcat/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/stuntcat/__init__.py b/stuntcat/__init__.py
index c67e24f..8aab8e5 100644
--- a/stuntcat/__init__.py
+++ b/stuntcat/__init__.py
@@ -1,7 +1,7 @@
 """
 Stuntcat the game
 """
-__version__ = "0.2.1"
+__version__ = "0.2.2"
 
 from stuntcat import game