Compare commits

...

3 Commits

Author SHA1 Message Date
Jeff Moe cbe6149161 v0.0.9 2023-11-25 11:53:00 -07:00
Jeff Moe 924c6a6e0e Version revving, noted, fixed 2023-11-25 11:51:54 -07:00
Jeff Moe b641a66111 Version revving, noted 2023-11-25 11:51:18 -07:00
4 changed files with 13 additions and 3 deletions

View File

@ -4,3 +4,12 @@ Build, perhaps like this:
``` ```
deactivate ; rm -rf venv env dist ; virtualenv env ; source env/bin/activate ; pip install -U setuptools wheel pip ; pip install -r requirements.txt ; pip install -e . ; cd docs/ ; make clean ; make html ; cd .. ; python -m build deactivate ; rm -rf venv env dist ; virtualenv env ; source env/bin/activate ; pip install -U setuptools wheel pip ; pip install -r requirements.txt ; pip install -e . ; cd docs/ ; make clean ; make html ; cd .. ; python -m build
``` ```
# Versions
```
vim CHANGELOG.txt docs/source/conf.py pyproject.toml
# git commit CHANGELOG.txt docs/source/conf.py pyproject.toml -m "v0.0.0"
# git tag v0.0.0
# git push ; git push --tags
```

View File

@ -1,3 +1,4 @@
v0.0.9 Fix versions.
v0.0.8 Re-arrange project structure. v0.0.8 Re-arrange project structure.
v0.0.7 The Smack, use pyproject.toml, update Sphinx docs. v0.0.7 The Smack, use pyproject.toml, update Sphinx docs.
v0.0.6 Read the Docs Sphinx for The Smack. v0.0.6 Read the Docs Sphinx for The Smack.

View File

@ -9,7 +9,7 @@
project = "The Smack" project = "The Smack"
copyright = "2023, Jeff Moe" copyright = "2023, Jeff Moe"
author = "Jeff Moe" author = "Jeff Moe"
release = "v0.0.8" release = "v0.0.9"
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

View File

@ -5,8 +5,8 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "the_smack" name = "the_smack"
version = "0.0.6" version = "0.0.9"
[project.scripts] [project.scripts]
the-stack-licenses = "the_stack.the_stack_licenses:main" the-stack-licenses = "the_stack.the_stack_licenses:main"
the-stack-headers = "the_stack.the_stack_headers:main" the-stack-headers = "the_stack.the_stack_headers:main"