From 6d8e3a4ade61c9da6451be2799e7618b83e8a0f0 Mon Sep 17 00:00:00 2001 From: Anton Novojilov Date: Wed, 24 Jan 2024 11:12:40 +0300 Subject: [PATCH] Update compatibility with the latest version of ek package --- cli/cli.go | 4 ++-- clone/clone.go | 2 +- common/rbinstall.spec | 9 ++++++--- gen/gen.go | 2 +- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/cli/cli.go b/cli/cli.go index 64540e8..73c4c7a 100644 --- a/cli/cli.go +++ b/cli/cli.go @@ -66,7 +66,7 @@ import ( // App info const ( APP = "RBInstall" - VER = "3.4.0" + VER = "3.4.1" DESC = "Utility for installing prebuilt Ruby versions to rbenv" ) @@ -1254,7 +1254,7 @@ func unpackFile(file, outputDir string) error { } else { pb := progress.New(fsutil.GetSize(file), "") pb.Start() - err = tzst.Read(pb.Reader(bufio.NewReader(fd)), outputDir) + err = tzst.Read(bufio.NewReader(pb.Reader(fd)), outputDir) pb.Finish() } diff --git a/clone/clone.go b/clone/clone.go index d7bcce7..2119a5b 100644 --- a/clone/clone.go +++ b/clone/clone.go @@ -43,7 +43,7 @@ import ( // App info const ( APP = "RBInstall Clone" - VER = "3.1.2" + VER = "3.1.3" DESC = "Utility for cloning RBInstall repository" ) diff --git a/common/rbinstall.spec b/common/rbinstall.spec index 10a5981..9c74c58 100644 --- a/common/rbinstall.spec +++ b/common/rbinstall.spec @@ -10,7 +10,7 @@ Summary: Utility for installing prebuilt Ruby to rbenv Name: rbinstall -Version: 3.4.0 +Version: 3.4.1 Release: 0%{?dist} Group: Applications/System License: Apache License, Version 2.0 @@ -38,7 +38,7 @@ Utility for installing different prebuilt versions of Ruby to rbenv. %package gen Summary: Utility for generating RBInstall index -Version: 3.2.2 +Version: 3.2.3 Release: 0%{?dist} Group: Development/Tools @@ -50,7 +50,7 @@ Utility for generating RBInstall index. %package clone Summary: Utility for cloning RBInstall repository -Version: 3.1.2 +Version: 3.1.3 Release: 0%{?dist} Group: Development/Tools @@ -118,6 +118,9 @@ rm -rf %{buildroot} ################################################################################ %changelog +* Wed Jan 24 2024 Anton Novojilov - 3.4.1-0 +- Dependencies update + * Mon Jan 15 2024 Anton Novojilov - 3.4.0-0 - [cli] Improved versions listing - [cli] Fixed bug with uninstalling diff --git a/gen/gen.go b/gen/gen.go index f44feb4..58860f0 100644 --- a/gen/gen.go +++ b/gen/gen.go @@ -41,7 +41,7 @@ import ( // App info const ( APP = "RBInstall Gen" - VER = "3.2.2" + VER = "3.2.3" DESC = "Utility for generating RBInstall index" )