Pystache

Latest version: v0.6.8

Safety actively analyzes 723685 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 1 of 4

0.6.6

-------------------

- Update README to match supported versions. [Thomas David Baker]
- Update pre-commit. [Thomas David Baker]
- Update pyproject.toml with 3.12 and 3.13 Python versions. [Alvaro Crespo]
- Update tox config to use Python 3.12 and 3.13 versions. [Alvaro Crespo]
- Update yml files with Python 3.12 and 3.13. [Alvaro Crespo]
- Update changelog for v0.6.5 a bit belatedly. [Thomas David Baker]

0.6.5

-------------------

- Bump the version bits called out in the readme. [Stephen L Arnold]
- Keep changelog up to date manually as I don't know how to
autogenerate. [Thomas David Baker]

0.6.4

-------------------

Other
~~~~~

- Merge pull request 23 from PennyDreadfulMTG/more-fixes. [Thomas David Baker]
- Use the content-type for RST that pypi now wants
- Use the content-type for RST that pypi now wants. [Thomas David Baker]

0.6.3

-------------------

New
~~~

- Add full sphinx apidoc build, include readme/extras. [Stephen L Arnold]
* add new tox commands for 'docs' and 'docs-lint'
* cleanup link errors found by docs-lint
* add sphinx doc build workflow, update ci workflow
* remove new version var from init.py globals

- Display repo state in docs build, include CHANGELOG. [Stephen L Arnold]
* add sphinx_git extension to docs conf and setup deps
* display branch/commit/state docs were built from
* include CHANGELOG (but not HISTORY) in docs build/toc
* Convert readme.md to readme.rst, move extra docs. [Stephen L Arnold]

Fixes
~~~~~

- Fix included filename and link cleanup. [Stephen L Arnold]
- Remove more py2 cruft from doctesting (py3.10 warnings) [Stephen L Arnold]
- Update maintainer info and spec test cmd. [Stephen L Arnold]
* update coverage value for delta/base, allow digits only
- Use updated bandit action and workflow excludes (exclude test) [Stephen L Arnold]
* also fix missing PR event check in coverage workflow
- Use current org-level coverage workflow. [Stephen L Arnold]
* increase fetch depth and update regex
* updated action deps, relaxed run criteria
* go back to "normal" tokens, remove permission hacks
* still needs more job isolation => refactor for another day

Other
~~~~~

- Merge pull request 21 from PennyDreadfulMTG/update-pypi. [Thomas David Baker]
- Update a few small things before making a release for pypi
- Update location of flake8 for pre-commit, official location has moved. [Thomas David Baker]
- Correct small issue in README. [Thomas David Baker]
- Specify passenv in a way that tox is happy with. [Thomas David Baker]
- Ignore PyCharm dir. [Thomas David Baker]
- Update TODO to remove some things that have been TODOne. [Thomas David Baker]
- Merge pull request 20 from VCTLabs/new-docs-cleanup. [Katelyn Gigante]
- New docs cleanup
- Merge pull request 19 from VCTLabs/auto-docs. [Thomas David Baker]
- New docs and automation, more modernization
- Do pre-release (manual) updates for changes and conda recipe. [Stephen L Arnold]
* create changes file: gitchangelog v0.6.0.. > CHANGELOG.rst
* edit top line in CHANGELOG.rst using current date/new tag
* edit conda/meta.yaml using new tag, then tag this commit
- Merge pull request 18 from VCTLabs/mst-upstream. [Thomas David Baker]
- Workflow and test driver fixes
- Use buildbot account. [Katelyn Gigante]
- Merge pull request 16 from PennyDreadfulMTG/fix-coverage. [Katelyn Gigante]
- Use ACCESS_TOKEN secret rather than provided GITHUB_TOKEN
- Use ACCESS_TOKEN secret rather than provided GITHUB_TOKEN. [Katelyn Gigante]
- Should fix the coverage badge

0.6.2

--------------------

New
~~~
- Add full sphinx apidoc build, include readme/extras. [Stephen L
Arnold]

* add new tox commands for 'docs' and 'docs-lint'
* cleanup link errors found by docs-lint
* add sphinx doc build workflow, update ci workflow
* remove new version var from __init__.py globals

Changes
~~~~~~~
- Convert readme.md to readme.rst, move extra docs. [Stephen L Arnold]

Fixes
~~~~~
- Fix included filename and link cleanup. [Stephen L Arnold]
- Remove more py2 cruft from doctesting (py3.10 warnings) [Stephen L Arnold]
- Update maintainer info and spec test cmd. [Stephen L Arnold]

* update coverage value for delta/base, allow digits only
- Use updated bandit action and workflow excludes (exclude test)
[Stephen L Arnold]

* also fix missing PR event check in coverage workflow
- Use current org-level coverage workflow. [Stephen L Arnold]

* increase fetch depth and update regex
* updated action deps, relaxed run criteria
* go back to "normal" tokens, remove permission hacks
* still needs more job isolation => refactor for another day

Other
~~~~~
- Use buildbot account. [Katelyn Gigante]
- Use ACCESS_TOKEN secret rather than provided GITHUB_TOKEN. [Katelyn
Gigante]

Should fix the coverage badge

0.6.1

-------------------

Changes
~~~~~~~
- Add shallow checkout for testing. [Stephen L Arnold]
- Bump comment action to latest release, verify checkout depth. [Stephen
L Arnold]

* see: https://github.com/marocchino/sticky-pull-request-comment/issues/298
in upstream action repo

Fixes
~~~~~
- Use workflow PR target and checkout params. [Stephen L Arnold]
- Split coverage (checkout) job from PR comment job. [Stephen L Arnold]
- Use correct tox env cmd for single platform/version. [Stephen L
Arnold]


Changelog Generation
====================

Changelogs help document important changes. We use an updated version of
gitchangelog_ to produce a nice Github Release page (or just generate a
shell SVD-style document) using the gitchangelog-action_ in the Release
workflow.

.. _gitchangelog: https://github.com/sarnold/gitchangelog
.. _gitchangelog-action: https://github.com/marketplace/actions/gitchangelog-action


To generate a (full) changelog from the repository root, run:

.. code-block:: bash

(venv) $ gitchangelog > CHANGELOG.rst

You can use ``gitchangelog`` to create the changelog automatically. It
examines git commit history and uses custom "filters" to produce its
output. The configuration for this is in the file ``.gitchangelog.rc``.

To make your changelog even more useful/readable, you should use good
commit messages and consider using the gitchangelog message modifiers.
Since the ``.gitchangelog.rc`` is actually written in Python, it becomes
quite dynamic, thus the configured modifiers and associated documentation
are usually documented in the file itself (unless someone strips out all
the comments). For this config, the message format uses 3 types of
modifier::

Message Format
ACTION: [AUDIENCE:] COMMIT_MSG [!TAG ...]

Description
ACTION is one of 'chg', 'fix', 'new'

Is WHAT the change is about.

'chg' is for refactor, small improvement, cosmetic changes...
'fix' is for bug fixes
'new' is for new features, big improvement

AUDIENCE is optional and one of 'dev', 'usr', 'pkg', 'test', 'doc'

Is WHO is concerned by the change.

'dev' is for developers (API changes, refactors...)
'usr' is for final users (UI changes)
'pkg' is for packagers (packaging changes)
'test' is for testers (test only related changes)
'doc' is for doc guys (doc only changes)

COMMIT_MSG is ... well ... the commit message itself.

TAGs are additional adjective as 'refactor' 'minor' 'cosmetic'

They are preceded with a '!' or a '' (prefer the former, as the
latter is wrongly interpreted in github.) Commonly used tags are:

'refactor' is obviously for refactoring code only
'minor' is for a very meaningless change (a typo, adding a comment)
'cosmetic' is for cosmetic driven change (re-indentation, 80-col...)
'wip' is for partial functionality but complete sub-functionality.

Example:

new: usr: support of bazaar implemented
chg: re-indented some lines !cosmetic
new: dev: updated code to be compatible with last version of killer lib.
fix: pkg: updated year of license coverage.
new: test: added a bunch of test around user usability of feature X.
fix: typo in spelling my name in comment. !minor


See the current `.gitchangelog.rc`_ in the repo for more details.

Read more about gitchangelog_.

.. _.gitchangelog.rc: https://github.com/VCTLabs/redis-ipc/blob/develop/.gitchangelog.rc
.. _gitchangelog: https://github.com/sarnold/gitchangelog


Git Tags
--------

Git tags are a way to bookmark commits, and come in two varieties:
lightweight and signed/annotated. Both signed and annotated tags
contain author information and when used they will help organize the
changelog.

To create an annotated tag for a version ``0.1.1`` release:

.. code-block:: bash

$ git tag -a v0.1.1 -m "v0.1.1"

Using tags like this will break the changelog into sections based on
versions. If you forgot to make a tag you can checkout an old commit
and make the tag (don't forget to adjust the date - you may want to
google this...)


Sections
--------

The sections in the changelog are created from the git log commit
messages, and are parsed using the regex defined in the
``.gitchangelog.rc`` configuration file.


History
=======

**Note:** Official support for Python 2.7 will end with Pystache version 0.6.0.

Page 1 of 4

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.