2 Commits

Author SHA1 Message Date
90ff8a94e5 Release version 1.0.1
Some checks failed
CI + Mark Stable / Test & Lint (push) Has been cancelled
CI + Mark Stable / Mark stable tag (push) Has been cancelled
2025-12-16 19:26:28 +01:00
24b6311c29 Added hatch
https://chatgpt.com/share/6941a2a4-7974-800f-8911-9ab0bf1e3873
2025-12-16 19:25:28 +01:00
3 changed files with 12 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
## [1.0.1] - 2025-12-16
* Now buildable via python
## [1.0.0] - 2025-12-16 ## [1.0.0] - 2025-12-16
* Initial Release * Initial Release

View File

@@ -25,3 +25,6 @@ clean:
rm -rf .pytest_cache .ruff_cache .mypy_cache rm -rf .pytest_cache .ruff_cache .mypy_cache
find . -type d -name "__pycache__" -print0 | xargs -0 -r rm -rf find . -type d -name "__pycache__" -print0 | xargs -0 -r rm -rf
find . -type f -name "*.pyc" -delete find . -type f -name "*.pyc" -delete
build:
python -m build

View File

@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project] [project]
name = "doli" name = "doli"
version = "1.0.0" version = "1.0.1"
description = "Config linker for chezmoi and Nextcloud" description = "Config linker for chezmoi and Nextcloud"
readme = "README.md" readme = "README.md"
requires-python = ">=3.10" requires-python = ">=3.10"
@@ -18,3 +18,6 @@ Repository = "https://github.com/kevinveenbirkenbach/dotlinker"
[project.scripts] [project.scripts]
doli = "dotlinker.cli:main" doli = "dotlinker.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/dotlinker"]