From 754dafc3f13a4857d33fd4f9a2e827d311fdecde Mon Sep 17 00:00:00 2001 From: "Reza (Shahin) Khanipour" Date: Thu, 25 Jul 2024 17:06:20 +0200 Subject: [PATCH] fix(python): add missing initial version. Without this, `cz` will fail upgrading the version. --- .../src/{{ project_name }}/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/template/{% if language == 'Python' %}{{ project_name }}{% endif %}/src/{{ project_name }}/__init__.py b/template/{% if language == 'Python' %}{{ project_name }}{% endif %}/src/{{ project_name }}/__init__.py index e69de29..6c8e6b9 100644 --- a/template/{% if language == 'Python' %}{{ project_name }}{% endif %}/src/{{ project_name }}/__init__.py +++ b/template/{% if language == 'Python' %}{{ project_name }}{% endif %}/src/{{ project_name }}/__init__.py @@ -0,0 +1 @@ +__version__ = "0.0.0"