Metadata-Version: 2.4
Name: releez
Version: 0.2.5
Summary: CLI tool for helping to manage release processes.
Keywords: release,versioning,changelog,git,cli,semver,ci,cd
Author: James Trousdale
License-Expression: MIT
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Version Control
Requires-Dist: typer==0.20.0
Requires-Dist: gitpython>=3.1.45,<4
Requires-Dist: pygithub>=2.8.1,<3
Requires-Dist: git-cliff>=2.11.0,<3
Requires-Dist: semver>=3.0.1,<4
Requires-Dist: pydantic>=2.7.0,<3
Requires-Dist: pydantic-settings>=2.7.0,<3
Requires-Python: >=3.11
Project-URL: Homepage, https://github.com/hotdog-werx/releez
Project-URL: Repository, https://github.com/hotdog-werx/releez
Project-URL: Bug Tracker, https://github.com/hotdog-werx/releez/issues
Project-URL: Changelog, https://github.com/hotdog-werx/releez/blob/master/CHANGELOG.md
Description-Content-Type: text/markdown

# `releez`

[![CI](https://img.shields.io/github/actions/workflow/status/hotdog-werx/releez/ci-checks.yaml)](https://github.com/hotdog-werx/releez/actions/workflows/ci-checks.yaml)
[![PyPI version](https://badge.fury.io/py/releez.svg)](https://pypi.org/project/releez/)
[![Python 3.11+](https://img.shields.io/badge/python-3.11%2B-blue)](https://www.python.org/downloads/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Coverage](https://codecov.io/gh/hotdog-werx/releez/branch/master/graph/badge.svg)](https://codecov.io/gh/hotdog-werx/releez)

`releez` is a CLI tool for managing semantic versioned releases.

`releez` uses [`git-cliff`](https://git-cliff.org/) for versioning logic and
changelog generation under the hood. You should host a `cliff.toml` or other
compatible `git-cliff` configuration in your repo. Review the `git-cliff`
documentation for details.

## Usage

Start a release from your repo (requires `git` on `PATH`):

`releez release start`

Common options:

- `--bump auto|patch|minor|major`
- `--base main`
- `--changelog-path CHANGELOG.md` (or `--changelog`)
- `--no-create-pr` (skip GitHub PR creation)
- `--github-token ...` (or set `RELEEZ_GITHUB_TOKEN`, falling back to
  `GITHUB_TOKEN`)
- `--dry-run`

Compute an artifact version for CI:

`releez version artifact`

Common options:

- `--scheme docker|semver|pep440`
- `--version-override ...`
- `--is-full-release`
- `--prerelease-type alpha|beta|rc`
- `--prerelease-number ...`
- `--build-number ...`
- `--alias-versions none|major|minor` (full releases only)

Examples:

- Docker PR build:
  `releez version artifact --scheme docker --version-override 0.1.0 --prerelease-type alpha --prerelease-number 123 --build-number 456`
  (outputs `0.1.0-alpha123-456`)
- Python PR build:
  `releez version artifact --scheme pep440 --version-override 0.1.0 --prerelease-type alpha --prerelease-number 123 --build-number 456`
- Main branch RC build:
  `releez version artifact --scheme docker --version-override 0.1.0 --prerelease-type rc --prerelease-number 0 --build-number 456`
  (outputs `0.1.0-rc0-456`)

Create git tags for a release:

`releez release tag` (tags the git-cliff computed release version; pushes tags
to `origin` by default)

Override the tagged version if needed:

`releez release tag --version-override 2.3.4`

Optionally update major/minor tags:

- Major only:
  `releez release tag --version-override 2.3.4 --alias-versions major` (creates
  `2.3.4` and `v2`)
- Major + minor:
  `releez release tag --version-override 2.3.4 --alias-versions minor` (creates
  `2.3.4`, `v2`, `v2.3`)

Preview what will be published (version and tags):

`releez release preview` (prints markdown to stdout)

`releez release preview --output release-preview.md` (write markdown to a file)

Generate the unreleased changelog section for the release:

`releez release notes` (prints markdown to stdout)

`releez release notes --output release-notes.md` (write markdown to a file)

Regenerate the entire changelog from git history:

`releez changelog regenerate` (regenerates `CHANGELOG.md` using git-cliff)

Common options:

- `--changelog-path CHANGELOG.md` (specify a different changelog file)
- `--run-changelog-format` (run the configured format hook after regeneration)
- `--changelog-format-cmd ...` (override the configured format command)

This is useful for fixing changelog formatting issues or rebuilding the
changelog after repository changes.

## Configuration

`releez` supports configuration via:

1. CLI flags for a command (highest)
2. `RELEEZ_*` environment variables
3. `releez.toml` in the repo root
4. `pyproject.toml` under `[tool.releez]` (lowest)

Config values are applied as defaults for relevant CLI options; passing the CLI
flag always wins.

### Config keys

TOML config supports both `snake_case` and `kebab-case` keys.

Env vars always use `RELEEZ_` + `SNAKE_CASE`, with `__` for nesting. Example:
`RELEEZ_HOOKS__CHANGELOG_FORMAT`.

### Supported settings

These are the settings currently loaded from config/env:

- `base_branch` (`--base` on `release start`)
- `git_remote` (`--remote` on `release start` / `release tag`)
- `pr_labels` (`--labels` on `release start`)
- `pr_title_prefix` (`--title-prefix` on `release start`)
- `changelog_path` (`--changelog-path` on `release start` /
  `changelog regenerate`)
- `create_pr` (`--create-pr/--no-create-pr` on `release start`)
- `run_changelog_format` (`--run-changelog-format` on `release start` /
  `changelog regenerate`)
- `hooks.changelog_format` (used by `release start` and `changelog regenerate`
  when formatting is enabled)
- `alias_versions` (`--alias-versions` on `release tag` / `release preview` /
  `version artifact`)

Other flags (e.g. `--version-override`, `--scheme`, `--build-number`) are
runtime inputs and are not read from config files.

### Examples

`pyproject.toml`:

```toml
[tool.releez]
base-branch = "master"
git-remote = "origin"
alias-versions = "minor"
run-changelog-format = true

[tool.releez.hooks]
changelog-format = ["poe", "format-dprint", "{changelog}"]
```

`releez.toml`:

```toml
base_branch = "main"
git_remote = "origin"
alias_versions = "minor"
run_changelog_format = true

[hooks]
changelog_format = ["poe", "format-dprint", "{changelog}"]
```

Environment variables:

```bash
export RELEEZ_GIT_REMOTE=origin
export RELEEZ_ALIAS_VERSIONS=major
export RELEEZ_HOOKS__CHANGELOG_FORMAT='["poe","format-dprint","{changelog}"]'
```

Notes:

- `releez` prefers `RELEEZ_GITHUB_TOKEN` over `GITHUB_TOKEN` for PR creation;
  the token is read separately and is not part of `RELEEZ_*` settings.
- `{changelog}` in `changelog_format` is replaced with the configured changelog
  path before execution.

## GitHub actions

We've built two GitHub reusable actions which use `releez` to streamline
integration with CI pipelines. Review the documentation for each action for more
details.

### [`releez-version-artifact-action`](https://github.com/hotdog-werx/releez-version-artifact-action)

This action can be used during CI to generate artifact versions with versions
corresponding to the versions suggested by `releez` (and implicitly,
`git-cliff`).

### [`releez-finalize-action`](https://github.com/hotdog-werx/releez-finalize-action)

This action can be run to finalize a release. You can see
[this workflow](./.github/workflows/finalize-release.yaml) for an example a
usage.

It applies tags and outputs artifact versions as well as release notes that can
be used subsequently to create a GitHub Release.

A release should first be started with `releez release start`, usually locally,
unless you've given your actions permission to create PRs, such as via a GitHub
App.

## GitHub recommendations

If you use GitHub PRs, prefer squashing and using the PR title as the squash
commit message:

- Enable “Allow squash merging”
- Set “Default commit message” to “Pull request title”

This keeps your main branch history aligned with semantic PR titles (and works
well with `amannn/action-semantic-pull-request` and changelog generation via
`git-cliff`).
