From 5d5eddc0a4d622ca3fc34ef95038d1e4e05c8929 Mon Sep 17 00:00:00 2001 From: Stephan Boyer Date: Sun, 5 Apr 2026 23:32:16 -0700 Subject: [PATCH] Release v0.27.0 --- .github/workflows/ci.yml | 12 ++++++------ CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- toast.yml | 12 ++++++------ 5 files changed, 20 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e2087db..cb063d2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -90,8 +90,8 @@ jobs: # https://github.com/rust-lang/rustup/issues/2441 # # for more information. - rustup toolchain install 1.94.0 --no-self-update # [ref:rust_1.94.0] - rustup default 1.94.0 # [ref:rust_1.94.0] + rustup toolchain install 1.94.1 --no-self-update # [ref:rust_1.94.1] + rustup default 1.94.1 # [ref:rust_1.94.1] # Add the targets. rustup target add x86_64-pc-windows-msvc @@ -131,8 +131,8 @@ jobs: set -euxo pipefail # Install the appropriate version of Rust. - rustup toolchain install 1.94.0 # [ref:rust_1.94.0] - rustup default 1.94.0 # [ref:rust_1.94.0] + rustup toolchain install 1.94.1 # [ref:rust_1.94.1] + rustup default 1.94.1 # [ref:rust_1.94.1] # Add the targets. rustup target add x86_64-apple-darwin @@ -213,8 +213,8 @@ jobs: set -euxo pipefail # Install the appropriate version of Rust. - rustup toolchain install 1.94.0 # [ref:rust_1.94.0] - rustup default 1.94.0 # [ref:rust_1.94.0] + rustup toolchain install 1.94.1 # [ref:rust_1.94.1] + rustup default 1.94.1 # [ref:rust_1.94.1] # Fetch the program version. VERSION="$(cargo pkgid | cut -d# -f2 | cut -d: -f2)" diff --git a/CHANGELOG.md b/CHANGELOG.md index f12d3fc..23f316e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.27.0] - 2026-04-05 + +### Changed +- Dependencies have been updated. +- The command-line parsing code has been modernized. + ## [0.26.1] - 2026-03-07 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index f6e1714..1ac2486 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -338,7 +338,7 @@ dependencies = [ [[package]] name = "docuum" -version = "0.26.1" +version = "0.27.0" dependencies = [ "byte-unit", "chrono", diff --git a/Cargo.toml b/Cargo.toml index ad0db86..f37b63c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "docuum" -version = "0.26.1" +version = "0.27.0" authors = ["Stephan Boyer "] edition = "2024" description = "LRU eviction of Docker images." diff --git a/toast.yml b/toast.yml index 5c3ca7e..be372e1 100644 --- a/toast.yml +++ b/toast.yml @@ -17,11 +17,11 @@ command_prefix: | cargo-offline () { cargo --frozen --offline "$@"; } # Use this wrapper for formatting code or checking that code is formatted. We use a nightly Rust - # version for the `trailing_comma` formatting option [tag:rust_fmt_nightly_2026-03-07]. The + # version for the `trailing_comma` formatting option [tag:rust_fmt_nightly_2026-04-06]. The # nightly version was chosen as the latest available release with all components present # according to this page: # https://rust-lang.github.io/rustup-components-history/x86_64-unknown-linux-gnu.html - cargo-fmt () { cargo +nightly-2026-03-07 --frozen --offline fmt --all -- "$@"; } + cargo-fmt () { cargo +nightly-2026-04-06 --frozen --offline fmt --all -- "$@"; } # Make Bash log commands. set -x @@ -92,18 +92,18 @@ tasks: - install_packages - create_user command: | - # Install stable Rust [tag:rust_1.94.0]. + # Install stable Rust [tag:rust_1.94.1]. curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- \ -y \ - --default-toolchain 1.94.0 \ + --default-toolchain 1.94.1 \ --profile minimal \ --component clippy # Add Rust tools to `$PATH`. . "$HOME/.cargo/env" - # Install nightly Rust [ref:rust_fmt_nightly_2026-03-07]. - rustup toolchain install nightly-2026-03-07 --profile minimal --component rustfmt + # Install nightly Rust [ref:rust_fmt_nightly_2026-04-06]. + rustup toolchain install nightly-2026-04-06 --profile minimal --component rustfmt install_tools: description: Install the tools needed to build and validate the program.