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 @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.14.1](https://github.com/instantOS/instantCLI/compare/v0.14.0...v0.14.1) - 2026-06-18

### Fixed

- fix apt removal thingy

### Other

- inline trivial forwarding functions
- add apt support for removal cascade
- make wine save scanning more robust
- add orbit compat

## [0.14.0](https://github.com/instantOS/instantCLI/compare/v0.13.37...v0.14.0) - 2026-06-14

### Fixed
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.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ins"
version = "0.14.0"
version = "0.14.1"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
rg -n '0\.14\.0|v0\.14\.0|ins-0\.14\.0' pkgbuild/ins Cargo.toml CHANGELOG.md

Repository: instantOS/instantCLI

Length of output: 319


🏁 Script executed:

#!/bin/bash
# Check what files exist in pkgbuild/ins
ls -la pkgbuild/ins/

# Get the full version-related content from both files
echo "=== PKGBUILD ==="
cat pkgbuild/ins/PKGBUILD

echo ""
echo "=== .SRCINFO ==="
if [ -f "pkgbuild/ins/.SRCINFO" ]; then
  cat pkgbuild/ins/.SRCINFO
else
  echo "File not found"
fi

# Also verify Cargo.toml current version
echo ""
echo "=== Cargo.toml version line ==="
head -n 5 Cargo.toml | grep -n "version"

Repository: instantOS/instantCLI

Length of output: 2744


Update PKGBUILD and .SRCINFO to version 0.14.1.

The Cargo.toml version bump to 0.14.1 is not reflected in pkgbuild/ins/PKGBUILD and pkgbuild/ins/.SRCINFO, which still reference pkgver=0.14.0 and download from v0.14.0 tags. Both files must be updated to maintain release consistency.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@Cargo.toml` at line 3, The version bump in Cargo.toml to 0.14.1 is not
reflected in the PKGBUILD and .SRCINFO files, creating a version mismatch.
Update the pkgver variable in PKGBUILD from 0.14.0 to 0.14.1, update any
download URLs or source references in PKGBUILD to point to the v0.14.1 tag
instead of v0.14.0, and ensure all corresponding entries in .SRCINFO are updated
to match the new version number and checksums for consistency across the
project.

edition = "2024"
description = "Instant CLI - command-line utilities"
license = "GPL-2.0-only"
Expand Down
Loading