provisioning/tools/release
2026-01-14 04:59:49 +00:00
..
.gitkeep chore update projects 2025-10-07 11:12:02 +01:00
create-release.nu chore: review docs and fix fence lint errors 2026-01-14 02:59:52 +00:00
notify-users.nu chore: review docs and fix fence lint errors 2026-01-14 02:59:52 +00:00
README.md chore: fix docs after fences fix 2026-01-14 04:59:49 +00:00
rollback-release.nu chore: review docs and fix fence lint errors 2026-01-14 02:59:52 +00:00
update-registry.nu chore: review docs and fix fence lint errors 2026-01-14 02:59:52 +00:00
upload-artifacts.nu chore: review docs and fix fence lint errors 2026-01-14 02:59:52 +00:00

Release Management Output

Purpose: Release artifacts, version tags, and release notes.

Contents

This directory contains outputs and staging for release management operations.

Release Process

Release management handles:

  1. Version Bumping - Update version numbers across the project
  2. Changelog Generation - Create release notes from git history
  3. Git Tagging - Create git tags for releases
  4. Release Notes - Write comprehensive release documentation

Release Workflow

Prepare a release:

just release-prepare --version 4.0.0   # Prepare new release
just release-validate                   # Validate release readiness

Create release artifacts:

just release-build                      # Build final release packages
just release-tag                        # Create git tags

Publish release:

just release-publish                    # Upload to repositories

Version Management

Versions follow semantic versioning: MAJOR.MINOR.PATCH

  • MAJOR - Breaking changes
  • MINOR - New features (backward compatible)
  • PATCH - Bug fixes

Example: 4.2.1 = Major 4, Minor 2, Patch 1

Release Artifacts

A release includes:

  • Version-tagged binaries
  • Changelog with all changes
  • Release notes with highlights
  • Git tags for all milestones
  • Published packages in repositories

Cleanup

Remove release artifacts:

just clean                       # Clean all build artifacts
  • dist/ - Build artifacts that releases are based on
  • package/ - Packages that get versioned and released
  • distribution/ - Distribution that incorporates release versions