diff options
| -rw-r--r-- | CHANGELOG.md | 4 | ||||
| -rw-r--r-- | justfile | 20 |
2 files changed, 4 insertions, 20 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index c029584..d898422 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,10 @@ The format is based on [Keep A Changelog](https://keepachangelog.com/en/1.1.0/) * Updated Nix flake inputs * Improved check recipe (requires Rust 1.97) +### Removed + +* Removed half-baked update recipe + ## [0.4.2] - 2026-07-07 ### Changed @@ -1,7 +1,5 @@ alias fmt := format -head := `git rev-parse HEAD` - _default: @just --list @@ -35,21 +33,3 @@ check: @# Check Nix flake nix flake check --print-build-logs --verbose cd examples/nixos/ && nix flake check --print-build-logs --verbose --override-input temp-postgres ../.. - -# Update Nix flake inputs, and Rust dependencies. -update: - @# Update Nix flake inputs. - git diff --stat --exit-code - nix flake update - nix develop --command just check - git diff --stat --exit-code -- . ':(exclude)flake.lock' - git diff --no-patch --exit-code flake.lock || git commit --message 'Update Nix flake inputs' flake.lock - @# Update Rust dependencies. - git diff --stat --exit-code - nix develop --command cargo upgrade - nix develop --command cargo update - nix develop --command just check - git diff --stat --exit-code -- . ':(exclude)Cargo.toml' ':(exclude)Cargo.lock' - git diff --no-patch --exit-code Cargo.lock || git commit --message 'Update Rust dependencies' Cargo.toml Cargo.lock - @# Show commits. - git --no-pager log --stat {{ head }}.. |