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
5 changes: 5 additions & 0 deletions .github/workflows/CD.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ jobs:
- name: Create a package
shell: bash
env:
GZIP: "-9"
XZ_OPT: "-9"
ZSTD_CLEVEL: 19
run: |
if [ "${{ matrix.os }}" != "windows-2025" ] ; then
Expand All @@ -124,8 +126,11 @@ jobs:
fi

if [ "${{ matrix.os }}" != "windows-2025" ] ; then
tar -cav --format=pax -f "${package}.tar.gz" "${package}"
tar -cav --format=pax -f "${package}.tar.xz" "${package}"
tar -cav --format=pax -f "${package}.tar.zst" "${package}"
else
7z a -bb -mx=9 "${package}.zip" "${package}"
7z a -bb -mx=9 -m0=LZMA "${package}.7z" "${package}"
fi
rm -rv rscrypt-*/
Expand Down
6 changes: 6 additions & 0 deletions crates/cli/CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ All notable changes to this project will be documented in this file.
The format is based on https://keepachangelog.com/[Keep a Changelog], and this
project adheres to https://semver.org/[Semantic Versioning].

== {compare-url}/scryptenc-cli-v0.8.1\...HEAD[Unreleased]

=== Added

* Add more archive formats for releases ({pull-request-url}/730[#730])

== {compare-url}/scryptenc-cli-v0.8.0\...scryptenc-cli-v0.8.1[0.8.1] - 2025-07-28

=== Changed
Expand Down