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
6 changes: 6 additions & 0 deletions .qoder/commands/create_release_pr.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
type: project_command
description: create a bump version commit and a release-xxx pr for reviewing
---

Please create a new branch (named in the format release-xxx) on the current HEAD, then bump the software version to the version number specified by this command (modifications are required in both cargo.toml and .spec files. For the .spec file, you also need to update the changelog using the correct date of the day (you should get this via the date command). The changelog should be created based on the commit differences between the current and previous versions, excluding any commits that don't belong to this branch). Then use the cargo command to update the version number in cargo.lock. Finally, please create a commit named "chore: bump version to xxxx". Then create a PR and submit it to GitHub for my review. That's it.
8 changes: 4 additions & 4 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ resolver = "2"
[workspace.package]
authors = ["Kun Lai <laikun@linux.alibaba.com>"]
edition = "2021"
version = "0.3.1"
version = "0.3.2"

[workspace.dependencies]
again = "0.1.2"
Expand Down
22 changes: 21 additions & 1 deletion cryptpilot.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
%define release_num 1

Name: cryptpilot
Version: 0.3.1
Version: 0.3.2
Release: %{release_num}%{?dist}
Summary: Full-disk encryption and data protection tool for confidential computing
Group: Applications/System
Expand Down Expand Up @@ -271,6 +271,26 @@ fi


%changelog
* Wed Jan 28 2026 Kun Lai <laikun@linux.alibaba.com> - 0.3.2-1
- fix: gracefully handle NTP time sync failure in boot service
- fix: simplify LVM partition creation to use remaining disk space
- fix(cryptpilot-convert): remove fstab ro mount option modification
- fix(fde): fix wrong logical volume name introduced by 37ecb7b
- fix(cryptpilot-convert): prevent version conflict when user provides custom RPM
- cryptpilot-convert: optimize image conversion with backing file
- cryptpilot-convert: disable LVM auto-activation for system VG
- cryptpilot-convert: auto-detect and use current cryptpilot-fde version
- refactor: adjust rw_overlay configuration behavior and naming
- feat(deb): add standard Debian packaging support
- fix(spec): add libguestfs-tools-c as dependencies of cryptpilot-fde
- fix(spec): correct aa and cdh dependencies of cryptpilot-crypt
- chore: remove unnecessary cryptsetup rpm dependency
- ci(test): fix coreutils conflict on anolisos:23
- ci(test): add runtime dependencies for test execution
- ci: split test workflow for parallel execution
- feat(cryptpilot-convert): mark rootfs as read-only
- fix(convert): avoid "No space left on device" during UKI patching

* Thu Jan 15 2026 Kun Lai <laikun@linux.alibaba.com> - 0.3.1-1
- feat(kbs): support both one-shot and daemon modes for CDH
- refactor(kbs): implement ttrpc client for daemon mode
Expand Down
Loading