aspera-cli 4.25.0 → 4.25.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9e812ee0dbd658feeaea8c37d4095df243f57a656b669e99460ca791585121a6
4
- data.tar.gz: a52360171fc63925f01cd7562453484d04e795221c02c36b78e29c99ed25276e
3
+ metadata.gz: 7147e3eb2457fe7b9703cf0e5cc4168403bfd8580cee8cc42f51d8bf93ebd665
4
+ data.tar.gz: 711445c7d6d81f9fdc16436a86d6db3c6e3310c043b1d80ba2d4f553fe68f587
5
5
  SHA512:
6
- metadata.gz: 70cb5577853b1c8c0a86e85dc55e0e43d9f0c2d18a58f9bf560375c67a76a04e1c06395321789ba8edbcec05c68e7642df2fb9ed5133a8c333992c8254e42dee
7
- data.tar.gz: 0d25857a31812782d7f831b5f9b4e95962621d4a712dbcbfa9be3889359dc163ca5914a57d7fe5b543b7010d7051865400adc47c590e33ae6f56b7131183e0a6
6
+ metadata.gz: bb91b5e5434e210809dfedc4c78bc3e6fad47a31de64ba7b26f719db4226ecc7f8abad74342bf7f971c3576b4e34ceda8196747dfb30ed37cfcf8111dedbf9e9
7
+ data.tar.gz: 8bee7a43906676d2a05c229e18b4c8cba30bd1f95d3c655aaa9304d8067076556bff3b5e9eb06627da0bd0c45cfd8fcb81baa9c7d2e3ae0a46ca50935f0dfb5f
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -2,9 +2,18 @@
2
2
 
3
3
  <!-- markdownlint-configure-file { "no-duplicate-heading": { "siblings_only": true } } -->
4
4
 
5
- ## 4.25.0.pre
5
+ ## 4.25.1
6
6
 
7
- Released: [Place date of release here]
7
+ Released: 2026-01-21
8
+
9
+ ### Issues Fixed
10
+
11
+ * `build`: Fixed deploy workflow to use global rake instead of bundle exec.
12
+ * `build`: Made rspec require conditional in test.rake for deploy environment.
13
+
14
+ ## 4.25.0
15
+
16
+ Released: 2026-01-21
8
17
 
9
18
  ### New Features
10
19
 
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
  <!--
3
3
  DO NOT EDIT: THIS FILE IS GENERATED, edit docs/README.erb.md, for details, read docs/README.md
4
4
  PANDOC_META_BEGIN
5
- subtitle: "ascli 4.25.0"
5
+ subtitle: "ascli 4.25.1"
6
6
  author: "Laurent MARTIN"
7
7
  PANDOC_META_END
8
8
  -->
@@ -42,7 +42,7 @@ Need to debug? I’ll show you what’s going on under the hood.
42
42
 
43
43
  Think of me as Aspera’s command-line sidekick: quick, reliable, and a little no-nonsense. You bring the files; I’ll bring the horsepower."
44
44
 
45
- Version : 4.25.0
45
+ Version : 4.25.1
46
46
 
47
47
  Laurent/2016-2026
48
48
 
@@ -139,7 +139,7 @@ ascli --version
139
139
  ```
140
140
 
141
141
  ```text
142
- 4.25.0
142
+ 4.25.1
143
143
  ```
144
144
 
145
145
  > [!NOTE]
@@ -806,11 +806,11 @@ Necessary gems can be packed in a `tar.gz` like this:
806
806
 
807
807
  ```bash
808
808
  mkdir temp_folder
809
- gem install aspera-cli:4.25.0 --no-document --install-dir temp_folder
809
+ gem install aspera-cli:4.25.1 --no-document --install-dir temp_folder
810
810
  find temp_folder
811
- mv temp_folder/cache aspera-cli-4.25.0-gems
811
+ mv temp_folder/cache aspera-cli-4.25.1-gems
812
812
  rm -fr temp_folder
813
- tar zcvf aspera-cli-4.25.0-gems aspera-cli-4.25.0-gems.tgz
813
+ tar zcvf aspera-cli-4.25.1-gems aspera-cli-4.25.1-gems.tgz
814
814
  ```
815
815
 
816
816
  #### Unix-like
@@ -955,7 +955,7 @@ ascli -v
955
955
  ```
956
956
 
957
957
  ```text
958
- 4.25.0
958
+ 4.25.1
959
959
  ```
960
960
 
961
961
  In order to keep persistency of configuration on the host, you should specify your user's configuration folder as a volume for the container.
@@ -4664,7 +4664,7 @@ ascli server upload "faux:///mydir?file=testfile&count=1000&size=1" --to-folder=
4664
4664
  ascli -h
4665
4665
  WARN No config file found. New configuration file: /home/runner/.aspera/ascli/config.yaml
4666
4666
  NAME
4667
- ascli -- a command line tool for Aspera Applications (v4.25.0)
4667
+ ascli -- a command line tool for Aspera Applications (v4.25.1)
4668
4668
 
4669
4669
  SYNOPSIS
4670
4670
  ascli COMMANDS [OPTIONS] [ARGS]
@@ -4,6 +4,6 @@ module Aspera
4
4
  module Cli
5
5
  # For beta add extension : .beta1
6
6
  # For dev version add extension : .pre
7
- VERSION = '4.25.0'
7
+ VERSION = '4.25.1'
8
8
  end
9
9
  end
data/release_notes.md ADDED
@@ -0,0 +1,8 @@
1
+ ## 4.25.1
2
+
3
+ Released: 2026-01-21
4
+
5
+ ### Issues Fixed
6
+
7
+ * `build`: Fixed deploy workflow to use global rake instead of bundle exec.
8
+ * `build`: Made rspec require conditional in test.rake for deploy environment.
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aspera-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.25.0
4
+ version: 4.25.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Laurent Martin
@@ -432,6 +432,7 @@ files:
432
432
  - lib/aspera/web_server_simple.rb
433
433
  - lib/transferd_pb.rb
434
434
  - lib/transferd_services_pb.rb
435
+ - release_notes.md
435
436
  homepage: https://github.com/IBM/aspera-cli
436
437
  licenses:
437
438
  - Apache-2.0
metadata.gz.sig CHANGED
Binary file