From de11b2843d926622e1368b02bf7685350edd5553 Mon Sep 17 00:00:00 2001 From: Kumi Date: Thu, 23 May 2024 09:05:26 +0200 Subject: [PATCH] feat: bump version to 0.2.1, update .gitignore Incremented the project version to 0.2.1, preparing for a new release with minor improvements and bug fixes. Additionally, refined the .gitignore file to explicitly include the distribution directory, ensuring build artifacts are not accidentally committed to version control. This step aligns with best practices for Python project maintenance and distribution. --- .gitignore | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 95bd0cb..7fcfbdc 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,4 @@ venv/ __pycache__/ .vscode privacy.txt -dist/ \ No newline at end of file +/dist/ \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 23d4fbc..cc2667e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "structables" -version = "0.2.0" +version = "0.2.1" authors = [ { name="Private.coffee Team", email="support@private.coffee" }, ]