diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a09efe7..23860f9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.12.0" + ".": "1.13.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ffc9cf..601f3a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [1.13.0](https://github.com/josephschmitt/pj/compare/v1.12.0...v1.13.0) (2026-02-13) + + +### Features + +* add --sort flag for custom output sorting ([#40](https://github.com/josephschmitt/pj/issues/40)) ([cce6ac5](https://github.com/josephschmitt/pj/commit/cce6ac5003caeca2c6936671fd2a036d61b86d87)) +* add tsconfig.json as built-in TypeScript project marker ([#38](https://github.com/josephschmitt/pj/issues/38)) ([c43f0a1](https://github.com/josephschmitt/pj/commit/c43f0a13692275fc6626444be2ee5d985e6c8330)) + + +### Bug Fixes + +* make sort direction defaults context-sensitive ([#41](https://github.com/josephschmitt/pj/issues/41)) ([085a36d](https://github.com/josephschmitt/pj/commit/085a36dcff4bda9558031019c261af53b47f8a1d)) + ## [1.12.0](https://github.com/josephschmitt/pj/compare/v1.11.0...v1.12.0) (2026-02-12) diff --git a/README.md b/README.md index 0dd5db3..bafdc0e 100644 --- a/README.md +++ b/README.md @@ -86,48 +86,48 @@ Download packages from the [releases page](https://github.com/josephschmitt/pj/r ```bash # amd64 -wget https://github.com/josephschmitt/pj/releases/download/v1.12.0/pj_1.11.0_linux_amd64.deb -sudo dpkg -i pj_1.12.0_linux_amd64.deb +wget https://github.com/josephschmitt/pj/releases/download/v1.13.0/pj_1.11.0_linux_amd64.deb +sudo dpkg -i pj_1.13.0_linux_amd64.deb # arm64 -wget https://github.com/josephschmitt/pj/releases/download/v1.12.0/pj_1.11.0_linux_arm64.deb -sudo dpkg -i pj_1.12.0_linux_arm64.deb +wget https://github.com/josephschmitt/pj/releases/download/v1.13.0/pj_1.11.0_linux_arm64.deb +sudo dpkg -i pj_1.13.0_linux_arm64.deb ``` #### Fedora/RHEL/CentOS (.rpm) ```bash # amd64 -wget https://github.com/josephschmitt/pj/releases/download/v1.12.0/pj_1.11.0_linux_amd64.rpm -sudo rpm -i pj_1.12.0_linux_amd64.rpm +wget https://github.com/josephschmitt/pj/releases/download/v1.13.0/pj_1.11.0_linux_amd64.rpm +sudo rpm -i pj_1.13.0_linux_amd64.rpm # arm64 -wget https://github.com/josephschmitt/pj/releases/download/v1.12.0/pj_1.11.0_linux_arm64.rpm -sudo rpm -i pj_1.12.0_linux_arm64.rpm +wget https://github.com/josephschmitt/pj/releases/download/v1.13.0/pj_1.11.0_linux_arm64.rpm +sudo rpm -i pj_1.13.0_linux_arm64.rpm ``` #### Alpine (.apk) ```bash # amd64 -wget https://github.com/josephschmitt/pj/releases/download/v1.12.0/pj_1.11.0_linux_amd64.apk -apk add --allow-untrusted pj_1.12.0_linux_amd64.apk +wget https://github.com/josephschmitt/pj/releases/download/v1.13.0/pj_1.11.0_linux_amd64.apk +apk add --allow-untrusted pj_1.13.0_linux_amd64.apk # arm64 -wget https://github.com/josephschmitt/pj/releases/download/v1.12.0/pj_1.11.0_linux_arm64.apk -apk add --allow-untrusted pj_1.12.0_linux_arm64.apk +wget https://github.com/josephschmitt/pj/releases/download/v1.13.0/pj_1.11.0_linux_arm64.apk +apk add --allow-untrusted pj_1.13.0_linux_arm64.apk ``` #### Arch Linux (.pkg.tar.zst) ```bash # amd64 -wget https://github.com/josephschmitt/pj/releases/download/v1.12.0/pj_1.11.0_linux_amd64.pkg.tar.zst -sudo pacman -U pj_1.12.0_linux_amd64.pkg.tar.zst +wget https://github.com/josephschmitt/pj/releases/download/v1.13.0/pj_1.11.0_linux_amd64.pkg.tar.zst +sudo pacman -U pj_1.13.0_linux_amd64.pkg.tar.zst # arm64 -wget https://github.com/josephschmitt/pj/releases/download/v1.12.0/pj_1.11.0_linux_arm64.pkg.tar.zst -sudo pacman -U pj_1.12.0_linux_arm64.pkg.tar.zst +wget https://github.com/josephschmitt/pj/releases/download/v1.13.0/pj_1.11.0_linux_arm64.pkg.tar.zst +sudo pacman -U pj_1.13.0_linux_arm64.pkg.tar.zst ``` ### Pre-built Binaries (All Platforms) @@ -141,18 +141,18 @@ Available platforms: ```bash # Example: macOS Apple Silicon -wget https://github.com/josephschmitt/pj/releases/download/v1.12.0/pj_1.11.0_darwin_arm64.tar.gz -tar -xzf pj_1.12.0_darwin_arm64.tar.gz +wget https://github.com/josephschmitt/pj/releases/download/v1.13.0/pj_1.11.0_darwin_arm64.tar.gz +tar -xzf pj_1.13.0_darwin_arm64.tar.gz sudo mv pj /usr/local/bin/ # Example: Linux amd64 -wget https://github.com/josephschmitt/pj/releases/download/v1.12.0/pj_1.11.0_linux_amd64.tar.gz -tar -xzf pj_1.12.0_linux_amd64.tar.gz +wget https://github.com/josephschmitt/pj/releases/download/v1.13.0/pj_1.11.0_linux_amd64.tar.gz +tar -xzf pj_1.13.0_linux_amd64.tar.gz sudo mv pj /usr/local/bin/ # Example: Linux arm64 -wget https://github.com/josephschmitt/pj/releases/download/v1.12.0/pj_1.11.0_linux_arm64.tar.gz -tar -xzf pj_1.12.0_linux_arm64.tar.gz +wget https://github.com/josephschmitt/pj/releases/download/v1.13.0/pj_1.11.0_linux_arm64.tar.gz +tar -xzf pj_1.13.0_linux_arm64.tar.gz sudo mv pj /usr/local/bin/ ```