Skip to content

Commit

Permalink
Merge pull request #175 from essentialkaos/develop
Browse files Browse the repository at this point in the history
Version 3.4.1
  • Loading branch information
andyone authored Jan 26, 2024
2 parents a344fe3 + 6d8e3a4 commit d6e432c
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 10 deletions.
4 changes: 2 additions & 2 deletions cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down Expand Up @@ -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()
}

Expand Down
2 changes: 1 addition & 1 deletion clone/clone.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
9 changes: 6 additions & 3 deletions common/rbinstall.spec
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand All @@ -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

Expand Down Expand Up @@ -118,6 +118,9 @@ rm -rf %{buildroot}
################################################################################

%changelog
* Wed Jan 24 2024 Anton Novojilov <[email protected]> - 3.4.1-0
- Dependencies update

* Mon Jan 15 2024 Anton Novojilov <[email protected]> - 3.4.0-0
- [cli] Improved versions listing
- [cli] Fixed bug with uninstalling
Expand Down
2 changes: 1 addition & 1 deletion gen/gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.18

require (
github.com/essentialkaos/depsy v1.1.0
github.com/essentialkaos/ek/v12 v12.94.0
github.com/essentialkaos/ek/v12 v12.98.0
github.com/essentialkaos/npck v1.6.2
)

Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
github.com/essentialkaos/check v1.4.0 h1:kWdFxu9odCxUqo1NNFNJmguGrDHgwi3A8daXX1nkuKk=
github.com/essentialkaos/depsy v1.1.0 h1:U6dp687UkQwXlZU17Hg2KMxbp3nfZAoZ8duaeUFYvJI=
github.com/essentialkaos/depsy v1.1.0/go.mod h1:kpiTAV17dyByVnrbNaMcZt2jRwvuXClUYOzpyJQwtG8=
github.com/essentialkaos/ek/v12 v12.94.0 h1:3mPRCOsJKictpqOuydZ0HleCQb/3B3STFo8GJ4yjFOM=
github.com/essentialkaos/ek/v12 v12.94.0/go.mod h1:peB5w8zUkRuDs7m/QG5Z2gMmqzSIs2viAmxzzNFIIoo=
github.com/essentialkaos/ek/v12 v12.98.0 h1:DSoP84rmUpNFjfuk8HSL04lkNLC8EzBo38IYoZ0O1qc=
github.com/essentialkaos/ek/v12 v12.98.0/go.mod h1:peB5w8zUkRuDs7m/QG5Z2gMmqzSIs2viAmxzzNFIIoo=
github.com/essentialkaos/go-linenoise/v3 v3.4.0 h1:g72w8x+/HIwOMBVvNaPYp+wMWVHrYZwzFAF7OfZR5Ts=
github.com/essentialkaos/go-linenoise/v3 v3.4.0/go.mod h1:t1kNLY2bSMQCy1JXOefD2BDLs/TTPMtTv3DFNV5uDSI=
github.com/essentialkaos/npck v1.6.2 h1:OqV74UfA9qoRYbFVsZ+KYH9kY//1nU6uX/HBfAltUQ4=
Expand Down

0 comments on commit d6e432c

Please sign in to comment.