diff --git a/gdu.spec b/gdu.spec index be2aa5482..7bebf4e98 100644 --- a/gdu.spec +++ b/gdu.spec @@ -1,6 +1,6 @@ Name: gdu Version: 5.29.0 -Release: 1 +Release: 2 Summary: Pretty fast disk usage analyzer written in Go License: MIT @@ -51,6 +51,8 @@ install -Dpm 0755 %{name}.1 $RPM_BUILD_ROOT%{_mandir}/man1/gdu.1 %{_mandir}/man1/gdu.1.gz %changelog +* Mon Dec 2 2024 - Danie de Jager - 5.29.0-2 +- rebuild * Mon Jun 17 2024 Daniel Milde - 5.29.0-1 - feat: support for reading gzip, bzip2 and xz files by @dundee in #363 - feat: add --show-mtime (-M) option by @dundee in #350 diff --git a/go.mod b/go.mod index 22c1d55ab..12ef05d77 100644 --- a/go.mod +++ b/go.mod @@ -28,10 +28,9 @@ require ( github.com/dgraph-io/ristretto v0.1.0 // indirect github.com/dustin/go-humanize v1.0.0 // indirect github.com/gdamore/encoding v1.0.0 // indirect - github.com/gogo/protobuf v1.3.2 // indirect + github.com/golang/protobuf v1.5.4 // indirect github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6 // indirect - github.com/golang/protobuf v1.3.1 // indirect github.com/golang/snappy v0.0.3 // indirect github.com/google/flatbuffers v1.12.1 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect @@ -43,7 +42,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect github.com/rivo/uniseg v0.4.7 // indirect github.com/spf13/pflag v1.0.5 // indirect - go.opencensus.io v0.22.5 // indirect + go.opencensus.io v0.24.0 // indirect golang.org/x/net v0.23.0 // indirect golang.org/x/term v0.18.0 // indirect golang.org/x/text v0.14.0 // indirect