tomldir 0.1.7

Lean TOML loader with runtime dot-path access and flattening into maps, optimized for tools and dynamic configs
Documentation
name: Release

on:
  push:
    tags:
      - 'v*'

permissions:
  contents: write

jobs:
  check:
    name: Check & Test
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v6
      - uses: swatinem/rust-cache@v2
      - uses: dtolnay/rust-toolchain@nightly
      - run: cargo test

  create-release:
    name: Create GitHub Release
    needs: check
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v6
        with:
          fetch-depth: 0 # Essential for changelog history

      - name: Create Release
        uses: softprops/action-gh-release@v2
        with:
          generate_release_notes: true