Compare commits

...

2 commits

Author SHA1 Message Date
c35242bf3c
chore: bump version to 0.0.4
All checks were successful
Python Package CI/CD / Publish to PyPI (push) Successful in 36s
Updated the project version to 0.0.4 to denote new changes or fixes.
2024-06-19 10:19:42 +02:00
03a47fffbd
chore: update .gitignore to include dist directory
Added trailing slash to "dist" in .gitignore to properly ignore the directory instead of any file named "dist". This ensures that all build artifacts are excluded from version control.
2024-06-19 10:19:21 +02:00
2 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View file

@ -1,4 +1,4 @@
venv/ venv/
*.pyc *.pyc
__pycache__/ __pycache__/
dist/ /dist/

View file

@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project] [project]
name = "gitcloak" name = "gitcloak"
version = "0.0.3" version = "0.0.4"
authors = [{ name = "Private.coffee Team", email = "support@private.coffee" }] authors = [{ name = "Private.coffee Team", email = "support@private.coffee" }]
description = "Simple Python-based private frontend for GitHub repositories" description = "Simple Python-based private frontend for GitHub repositories"
readme = "README.md" readme = "README.md"