release 0.4.0

This commit is contained in:
Waylon S. Walker 2025-04-23 19:56:26 -05:00
parent 225edce32d
commit 17c088526b
4 changed files with 15 additions and 3 deletions

View file

@ -22,3 +22,14 @@ jobs:
env:
# required for gh release
GH_TOKEN: ${{ github.token }}
- name: Install just
run: |
curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to DEST
shell: bash
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/0.6.16/install.sh | sh
shell: bash
- name: GitHub Release (just release)
run: just create-release
shell: bash

View file

@ -2,6 +2,7 @@
- create now has --apply to apply the generated manifest to the cluster
- generic templates endpoint for cli
- better motd for volume mounts
## 0.3.0

View file

@ -44,8 +44,8 @@ create-archives:
# ./scripts/generate_install_script.py "$VERSION"
# chmod +x dist/install.sh
# create-release: create-archives
create-release:
create-release: create-tag create-archives
# create-release:
#!/usr/bin/env bash
VERSION=$(hatch version)
./scripts/get_release_notes.py "$VERSION" > release_notes.tmp

View file

@ -1 +1 @@
__version__ = "0.3.0"
__version__ = "0.4.0b0"