chore: release v1.1.1

This commit is contained in:
veeso
2026-06-08 18:54:35 +00:00
parent 4a9da89642
commit 5cee1184dc
7 changed files with 19 additions and 7 deletions

View File

@@ -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 ## 1.1.0
Released on 2026-06-08 Released on 2026-06-08

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "termscp" name = "termscp"
version = "1.1.0" version = "1.1.1"
edition = "2024" edition = "2024"
authors = ["Christian Visintin <christian.visintin@veeso.dev>"] authors = ["Christian Visintin <christian.visintin@veeso.dev>"]
description = "termscp is a feature rich terminal file transfer and explorer with support for SCP/SFTP/FTP/Kube/S3/WebDAV" description = "termscp is a feature rich terminal file transfer and explorer with support for SCP/SFTP/FTP/Kube/S3/WebDAV"

View File

@@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd"> <package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata> <metadata>
<id>termscp</id> <id>termscp</id>
<version>1.1.0</version> <version>1.1.1</version>
<title>termSCP</title> <title>termSCP</title>
<authors>Christian Visintin</authors> <authors>Christian Visintin</authors>
<owners>Christian Visintin</owners> <owners>Christian Visintin</owners>

View File

@@ -5,10 +5,10 @@ $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$is_arm64 = $env:PROCESSOR_ARCHITECTURE -eq 'ARM64' -or $env:PROCESSOR_ARCHITEW6432 -eq 'ARM64' $is_arm64 = $env:PROCESSOR_ARCHITECTURE -eq 'ARM64' -or $env:PROCESSOR_ARCHITEW6432 -eq 'ARM64'
if ($is_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' $checksum = 'f6ad6c62f1578562f9af4bcee93bd4cc429cb52219c3636359b008db8789587e'
} else { } 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' $checksum = 'd7796081b6f67b82acfa94557aa6852d12a33daab3cca6490660b20e42752005'
} }

View File

@@ -26,7 +26,7 @@
#> #>
[CmdletBinding()] [CmdletBinding()]
param( param(
[string]$Version = "1.1.0", [string]$Version = "1.1.1",
[string]$InstallDir = "$env:LOCALAPPDATA\Programs\termscp", [string]$InstallDir = "$env:LOCALAPPDATA\Programs\termscp",
[Alias("Yes")] [Alias("Yes")]
[switch]$Force [switch]$Force

View File

@@ -9,7 +9,7 @@
# -f, -y, --force, --yes # -f, -y, --force, --yes
# Skip the confirmation prompt during installation # 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}" 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_AMD64="${GITHUB_URL}/termscp_${TERMSCP_VERSION}-1_amd64.deb"
DEB_URL_AARCH64="${GITHUB_URL}/termscp_${TERMSCP_VERSION}-1_arm64.deb" DEB_URL_AARCH64="${GITHUB_URL}/termscp_${TERMSCP_VERSION}-1_arm64.deb"

View File

@@ -1,3 +1,3 @@
export const DOCS_URL = "https://docs.termscp.rs"; export const DOCS_URL = "https://docs.termscp.rs";
export const GITHUB_URL = "https://github.com/veeso/termscp"; export const GITHUB_URL = "https://github.com/veeso/termscp";
export const VERSION = "1.1.0"; export const VERSION = "1.1.1";