Skip to content

Commit 36d07dd

Browse files
Release v4.25.6
1 parent 92e19a4 commit 36d07dd

3 files changed

Lines changed: 24 additions & 14 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
<!-- markdownlint-configure-file { "no-duplicate-heading": { "siblings_only": true } } -->
44

5-
## 4.26.0.pre
5+
## 4.25.6
66

7-
Released: [Place date of release here]
7+
Released: 2026-04-08
88

99
### Issues Fixed
1010

docs/README.md

Lines changed: 21 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
DO NOT EDIT: THIS FILE IS GENERATED, edit docs/README.erb.md.
44
PANDOC_DEFAULTS_BEGIN
55
metadata:
6-
subtitle: "ascli 4.26.0.pre"
6+
subtitle: "ascli 4.25.6"
77
author: "Laurent Martin"
88
PANDOC_DEFAULTS_END
99
-->
@@ -126,8 +126,8 @@ This section walks you through your first interaction with `ascli` on Linux.
126126

127127
```shell
128128
mkdir -p $HOME/bin
129-
tar zxvf ascli.4.26.0.pre.linux-x86_64.tgz
130-
mv ascli.4.26.0.pre.linux-x86_64 $HOME/bin/ascli
129+
tar zxvf ascli.4.25.6.linux-x86_64.tgz
130+
mv ascli.4.25.6.linux-x86_64 $HOME/bin/ascli
131131
export PATH=$PATH:$HOME/bin
132132
```
133133

@@ -141,7 +141,7 @@ ascli -v
141141
```
142142

143143
```text
144-
4.26.0.pre
144+
4.25.6
145145
```
146146

147147
- Install the latest Aspera transfer runtime, as it is not included in the `ascli` package:
@@ -299,7 +299,7 @@ This executable includes the Ruby runtime.
299299
> Refer to [Install `ascp`](#installation-of-ascp-through-transferd).
300300
301301
```shell
302-
curl -o ascli https://eudemo.asperademo.com/download/aspera-cli/ascli.4.26.0.pre.osx-arm64
302+
curl -o ascli https://eudemo.asperademo.com/download/aspera-cli/ascli.4.25.6.osx-arm64
303303
chmod a+x ascli
304304
./ascli config transferd install
305305
```
@@ -335,6 +335,16 @@ objdump -p /bin/bash | sed -n 's/^.*GLIBC_//p' | sort -V | tail -n1
335335
336336
The required GLIBC version for `ascp` can be found in the [Release Notes of HSTS](https://www.ibm.com/docs/en/ahts) or [in this page](https://eudemo.asperademo.com/download/sdk.html).
337337

338+
#### Windows: Chocolatey aspera-cli
339+
340+
`ascli` can be directly installed using **Chocolatey**.
341+
342+
In a PowerShell as Administrator:
343+
344+
```pwsh
345+
choco install aspera-cli -y
346+
```
347+
338348
### Ruby
339349

340350
A Ruby interpreter is required to run `ascli`.
@@ -831,11 +841,11 @@ Necessary gems can be packed in a `tar.gz` like this:
831841

832842
```shell
833843
mkdir temp_folder
834-
gem install aspera-cli:4.26.0.pre --no-document --install-dir temp_folder
844+
gem install aspera-cli:4.25.6 --no-document --install-dir temp_folder
835845
find temp_folder
836-
mv temp_folder/cache aspera-cli-4.26.0.pre-gems
846+
mv temp_folder/cache aspera-cli-4.25.6-gems
837847
rm -fr temp_folder
838-
tar zcvf aspera-cli-4.26.0.pre-gems aspera-cli-4.26.0.pre-gems.tgz
848+
tar zcvf aspera-cli-4.25.6-gems aspera-cli-4.25.6-gems.tgz
839849
```
840850

841851
#### Unix-like
@@ -977,7 +987,7 @@ ascli -v
977987
```
978988

979989
```text
980-
4.26.0.pre
990+
4.25.6
981991
```
982992

983993
In order to keep persistency of configuration on the host, you should specify your user's configuration folder as a volume for the container.
@@ -4830,7 +4840,7 @@ ascli server upload "faux:///mydir?file=testfile&count=1000&size=1" --to-folder=
48304840
```text
48314841
ascli -h
48324842
NAME
4833-
ascli -- a command line tool for Aspera Applications (v4.26.0.pre)
4843+
ascli -- a command line tool for Aspera Applications (v4.25.6)
48344844
48354845
SYNOPSIS
48364846
ascli COMMANDS [OPTIONS] [ARGS]
@@ -4875,7 +4885,7 @@ OPTIONS: global
48754885
--bash-comp Generate bash completion for command
48764886
--show-config Display parameters used for the provided action
48774887
-v, --version Display version
4878-
--ui=ENUM Method to start browser: [graphical], text
4888+
--ui=ENUM Method to start browser: graphical, [text]
48794889
--invalid-characters=VALUE Replacement character and invalid filename characters
48804890
--log-level=ENUM Log level: debug, error, fatal, [info], trace1, trace2, unknown, warn
48814891
--log-format=VALUE Log formatter (Proc, Logger::Formatter)

lib/aspera/cli/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ module Aspera
44
module Cli
55
# For beta add extension : .beta1
66
# For dev version add extension : .pre
7-
VERSION = '4.26.0.pre'
7+
VERSION = '4.25.6'
88
end
99
end

0 commit comments

Comments
 (0)