Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ All notable changes to SedX are documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.2.0] — 2026-04-19

### Added
- Claude Code skill `prefer-sedx-over-sed` with one-liner installer (`contrib/claude-skill/`)
- Gzip-compressed backups (~5× smaller on typical text) with backward-compatible restore of legacy uncompressed backups
- `make check-windows` target + wiring into `make check-ci` for local Windows cross-lint

### Changed
- Removed scaffolding that doesn't fit a Rust CLI: `Dockerfile`, `.dockerignore`, `justfile` (Makefile is the sole build runner), `scripts/package.sh` (cargo-dist owns this), `docs/ROADMAP.md` + `docs/PRODUCTION_ROADMAP.md` (stale pre-1.0 docs), `TEST_SUITE_SUMMARY.txt`

### Fixed
- Release workflow matrix hung forever on v1.1.0 waiting for retired GitHub runner images (ubuntu-20.04, macos-13, windows-2019); pinned cargo-dist matrix to current runners in `[workspace.metadata.dist.github-custom-runners]`

## [1.1.0] — 2026-04-19

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 20 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sedx"
version = "1.1.0"
version = "1.2.0"
edition = "2024"
description = "A safe, modern replacement for GNU sed with automatic backups, preview mode, and rollback"
authors = ["InkyQuill <inkyquill@users.noreply.github.com>"]
Expand Down Expand Up @@ -82,3 +82,22 @@ install-updater = false
# hand-edited to append a crates.io publish job (cargo-dist 0.22 doesn't
# generate one natively).
allow-dirty = ["ci"]

# Override cargo-dist 0.22.1's hard-coded matrix runners. The upstream
# defaults (ubuntu-20.04, macos-13, windows-2019) are all retired or
# deprecated GitHub runner images, so the release matrix hangs forever
# waiting for runners that no longer exist. Same fix the sibling `sel`
# project applied.
#
# Note aarch64-unknown-linux-gnu uses the native ARM runner
# (`ubuntu-24.04-arm`) rather than cross-compiling from x86_64.
# cargo-dist 0.22.1 emits no `packages_install` entry for that target,
# so without `gcc-aarch64-linux-gnu` on the runner the cross-link fails
# with "incompatible with elf64-x86-64". Building natively sidesteps
# the whole class of toolchain mismatch.
[workspace.metadata.dist.github-custom-runners]
aarch64-apple-darwin = "macos-14"
x86_64-apple-darwin = "macos-14"
aarch64-unknown-linux-gnu = "ubuntu-24.04-arm"
x86_64-unknown-linux-gnu = "ubuntu-24.04"
x86_64-pc-windows-msvc = "windows-2022"
Loading