Links
AI / Agents
gdtest-config-changelog
Test package for changelog config.
Installation
pip install gdtest-config-changelogGet Started
- API Reference — Full API documentation
Source files
gdtest_config_changelog/
__init__.py
"""Test package for changelog config."""
core.py
"""Change logging functions."""
def log_change(msg: str) -> None:
"""Log a change message.
Parameters
----------
msg : str
The change message to log.
Examples
--------
>>> log_change("Added new feature")
"""
pass
def get_history() -> list:
"""Get the full change history.
Returns
-------
list
A list of change log entries, newest first.
Examples
--------
>>> get_history()
[]
"""
return []great-docs.yml
changelog: enabled: true max_releases: 5