Metadata-Version: 2.1
Name: changelog_gen
Version: 0.9.13
Summary: Changelog generation tool
Home-page: https://github.com/NRWLDev/changelog-gen/
License: Apache-2.0
Author: Daniel Edgecombe
Author-email: edgy.edgemond@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Provides-Extra: bump-my-version
Provides-Extra: bump2version
Requires-Dist: bump-my-version (>=0.18.3,<0.19.0) ; extra == "bump-my-version"
Requires-Dist: bump2version (>=1.0.1,<2.0.0) ; extra == "bump2version"
Requires-Dist: httpx (>=0,<1)
Requires-Dist: rich (>=13.7.1,<14.0.0)
Requires-Dist: rtoml (>=0.9)
Requires-Dist: typer (>=0,<1)
Project-URL: Repository, https://github.com/NRWLDev/changelog-gen/
Description-Content-Type: text/markdown

# Changelog Generator - v0.9.13
[![image](https://img.shields.io/pypi/v/changelog_gen.svg)](https://pypi.org/project/changelog_gen/)
[![image](https://img.shields.io/pypi/l/changelog_gen.svg)](https://pypi.org/project/changelog_gen/)
[![image](https://img.shields.io/pypi/pyversions/changelog_gen.svg)](https://pypi.org/project/changelog_gen/)
![style](https://github.com/NRWLDev/changelog-gen/actions/workflows/style.yml/badge.svg)
![tests](https://github.com/NRWLDev/changelog-gen/actions/workflows/tests.yml/badge.svg)
[![codecov](https://codecov.io/gh/NRWLDev/changelog-gen/branch/main/graph/badge.svg)](https://codecov.io/gh/NRWLDev/changelog-gen)

# Details

`changelog-gen` is a CHANGELOG generator intended to be used in conjunction
with [bump-my-version](https://github.com/callowayproject/bump-my-version) to generate
changelogs and create release tags.

See the [docs](https://nrwldev.github.io/changelog-gen) for more details.

## Migrating to 0.9 (Conventioanl Commit support)
Check the discussion
[here](https://github.com/EdgyEdgemond/changelog-gen/discussions/98) for
details on how to update usage to maintain legacy functionality or move over to
new features.

## Installation

```bash
pip install changelog-gen[bump-my-version]   # recommended

pip install changelog-gen[bump2version]  # bump2version support will be dropped in the future
```

or clone this repo and install with poetry.

```bash
poetry install --extras=bump-my-version
```

## Contributing

This project uses pre-commit hooks, please run `pre-commit install` after
cloning and installing dev dependencies.

