From 83e1d5ea2e414907b190047e381d655331781788 Mon Sep 17 00:00:00 2001
From: David Barnes <barnesdavidj@gmail.com>
Date: Tue, 28 Jun 2022 11:45:57 -0400
Subject: [PATCH] Fix bug in pyproject.toml and bump version.

---
 docs/source/conf.py | 2 +-
 pyproject.toml      | 2 +-
 setup.cfg           | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/docs/source/conf.py b/docs/source/conf.py
index c3388ed..6964885 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -25,7 +25,7 @@ copyright = '2022, David Barnes'
 author = 'David Barnes'
 
 # The full version, including alpha/beta/rc tags
-release = '0.1'
+release = '0.1.1'
 
 
 # -- General configuration ---------------------------------------------------
diff --git a/pyproject.toml b/pyproject.toml
index 1ed3dba..eb29179 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta:__legacy__'
 
 [project]
 name = "django-dump-die"
-version = "0.1.0"
+version = "0.1.1"
 description = "A Django app to add Laravel/Symfony-like dump and die functionality."
 readme = "README.md"
 authors = [
diff --git a/setup.cfg b/setup.cfg
index 9503133..1e3a963 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,6 +1,6 @@
 [metadata]
 name = django-dump-die
-version = 0.1
+version = 0.1.1
 description = A Django app to add Laravel-like dump and die.
 long_description = file: README.md
 url = https://github.com/DJBarnes/django-dump-die
@@ -31,4 +31,4 @@ classifiers =
 
 [options]
 include_package_data = true
-packages = find:
+packages = find_namespace:
-- 
GitLab