diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a539d7..e095ce2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 1.1.1 + +Released on 2026-06-08 + +### Fixed + +- **build:** drop vergen-git2 build dependency + > vergen-git2 reads git metadata at build time, but the crates.io source + > tarball ships no .git, so the published 1.1.0 fails on `cargo install`. + > crates.io versions are immutable (no overwrite) and Chocolatey's + > moderation queue blocks a fast re-push, so a clean 1.1.1 without vergen + > is the only fix. ## 1.1.0 Released on 2026-06-08 diff --git a/Cargo.toml b/Cargo.toml index 5840f2a..b0f3dee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "termscp" -version = "1.1.0" +version = "1.1.1" edition = "2024" authors = ["Christian Visintin "] description = "termscp is a feature rich terminal file transfer and explorer with support for SCP/SFTP/FTP/Kube/S3/WebDAV" diff --git a/dist/chocolatey/termscp.nuspec b/dist/chocolatey/termscp.nuspec index 83f0edd..866ece3 100644 --- a/dist/chocolatey/termscp.nuspec +++ b/dist/chocolatey/termscp.nuspec @@ -3,7 +3,7 @@ termscp - 1.1.0 + 1.1.1 termSCP Christian Visintin Christian Visintin diff --git a/dist/chocolatey/tools/chocolateyinstall.ps1 b/dist/chocolatey/tools/chocolateyinstall.ps1 index 4d44127..a455dba 100644 --- a/dist/chocolatey/tools/chocolateyinstall.ps1 +++ b/dist/chocolatey/tools/chocolateyinstall.ps1 @@ -5,10 +5,10 @@ $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" $is_arm64 = $env:PROCESSOR_ARCHITECTURE -eq 'ARM64' -or $env:PROCESSOR_ARCHITEW6432 -eq 'ARM64' if ($is_arm64) { - $url = 'https://github.com/veeso/termscp/releases/download/v1.1.0/termscp-v1.1.0-msvc.zip' + $url = 'https://github.com/veeso/termscp/releases/download/v1.1.1/termscp-v1.1.1-msvc.zip' $checksum = 'f6ad6c62f1578562f9af4bcee93bd4cc429cb52219c3636359b008db8789587e' } else { - $url = 'https://github.com/veeso/termscp/releases/download/v1.1.0/termscp-v1.1.0-x86_64-pc-windows-msvc.zip' + $url = 'https://github.com/veeso/termscp/releases/download/v1.1.1/termscp-v1.1.1-x86_64-pc-windows-msvc.zip' $checksum = 'd7796081b6f67b82acfa94557aa6852d12a33daab3cca6490660b20e42752005' } diff --git a/install.ps1 b/install.ps1 index bff8b7f..c3a27ad 100644 --- a/install.ps1 +++ b/install.ps1 @@ -26,7 +26,7 @@ #> [CmdletBinding()] param( - [string]$Version = "1.1.0", + [string]$Version = "1.1.1", [string]$InstallDir = "$env:LOCALAPPDATA\Programs\termscp", [Alias("Yes")] [switch]$Force diff --git a/install.sh b/install.sh index f4b44fe..aaa18d8 100755 --- a/install.sh +++ b/install.sh @@ -9,7 +9,7 @@ # -f, -y, --force, --yes # Skip the confirmation prompt during installation -TERMSCP_VERSION="1.1.0" +TERMSCP_VERSION="1.1.1" GITHUB_URL="https://github.com/veeso/termscp/releases/download/v${TERMSCP_VERSION}" DEB_URL_AMD64="${GITHUB_URL}/termscp_${TERMSCP_VERSION}-1_amd64.deb" DEB_URL_AARCH64="${GITHUB_URL}/termscp_${TERMSCP_VERSION}-1_arm64.deb" diff --git a/site/src/consts.ts b/site/src/consts.ts index 6db31a1..5b37baa 100644 --- a/site/src/consts.ts +++ b/site/src/consts.ts @@ -1,3 +1,3 @@ export const DOCS_URL = "https://docs.termscp.rs"; export const GITHUB_URL = "https://github.com/veeso/termscp"; -export const VERSION = "1.1.0"; +export const VERSION = "1.1.1";