Jesús Pérez 44648e3206
chore: complete nickel migration and consolidate legacy configs
- Remove KCL ecosystem (~220 files deleted)
- Migrate all infrastructure to Nickel schema system
- Consolidate documentation: legacy docs → provisioning/docs/src/
- Add CI/CD workflows (.github/) and Rust build config (.cargo/)
- Update core system for Nickel schema parsing
- Update README.md and CHANGES.md for v5.0.0 release
- Fix pre-commit hooks: end-of-file, trailing-whitespace
- Breaking changes: KCL workspaces require migration
- Migration bridge available in docs/src/development/
2026-01-08 09:55:37 +00:00
..
2025-10-07 11:12:02 +01: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