diff --git a/README.md b/README.md index 413f9e1..8bdd895 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Multi Progress Bar -[![GoDoc](https://pkg.go.dev/badge/github.com/vbauerster/mpb)](https://pkg.go.dev/github.com/vbauerster/mpb/v7) +[![GoDoc](https://pkg.go.dev/badge/github.com/vbauerster/mpb)](https://pkg.go.dev/github.com/vbauerster/mpb/v8) [![Test status](https://github.com/vbauerster/mpb/actions/workflows/test.yml/badge.svg)](https://github.com/vbauerster/mpb/actions/workflows/test.yml) [![Donate with PayPal](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/vbauerster) @@ -26,8 +26,8 @@ "math/rand" "time" - "github.com/vbauerster/mpb/v7" - "github.com/vbauerster/mpb/v7/decor" + "github.com/vbauerster/mpb/v8" + "github.com/vbauerster/mpb/v8/decor" ) func main() { diff --git a/bar.go b/bar.go index 2f5ba9a..afc87db 100644 --- a/bar.go +++ b/bar.go @@ -12,7 +12,7 @@ "github.com/acarl005/stripansi" "github.com/mattn/go-runewidth" - "github.com/vbauerster/mpb/v7/decor" + "github.com/vbauerster/mpb/v8/decor" ) // Bar represents a progress bar. diff --git a/bar_filler.go b/bar_filler.go index c5da630..77043ff 100644 --- a/bar_filler.go +++ b/bar_filler.go @@ -3,7 +3,7 @@ import ( "io" - "github.com/vbauerster/mpb/v7/decor" + "github.com/vbauerster/mpb/v8/decor" ) // BarFiller interface. diff --git a/bar_filler_bar.go b/bar_filler_bar.go index cf6cdb5..22c1e07 100644 --- a/bar_filler_bar.go +++ b/bar_filler_bar.go @@ -5,8 +5,8 @@ "github.com/acarl005/stripansi" "github.com/mattn/go-runewidth" - "github.com/vbauerster/mpb/v7/decor" - "github.com/vbauerster/mpb/v7/internal" + "github.com/vbauerster/mpb/v8/decor" + "github.com/vbauerster/mpb/v8/internal" ) const ( diff --git a/bar_filler_nop.go b/bar_filler_nop.go index 926a6a9..d3fe4a8 100644 --- a/bar_filler_nop.go +++ b/bar_filler_nop.go @@ -3,7 +3,7 @@ import ( "io" - "github.com/vbauerster/mpb/v7/decor" + "github.com/vbauerster/mpb/v8/decor" ) // NopStyle provides BarFillerBuilder which builds NOP BarFiller. diff --git a/bar_filler_spinner.go b/bar_filler_spinner.go index 84203ac..25a71a3 100644 --- a/bar_filler_spinner.go +++ b/bar_filler_spinner.go @@ -6,8 +6,8 @@ "github.com/acarl005/stripansi" "github.com/mattn/go-runewidth" - "github.com/vbauerster/mpb/v7/decor" - "github.com/vbauerster/mpb/v7/internal" + "github.com/vbauerster/mpb/v8/decor" + "github.com/vbauerster/mpb/v8/internal" ) const ( diff --git a/bar_option.go b/bar_option.go index 372ec8f..0392e13 100644 --- a/bar_option.go +++ b/bar_option.go @@ -4,7 +4,7 @@ "bytes" "io" - "github.com/vbauerster/mpb/v7/decor" + "github.com/vbauerster/mpb/v8/decor" ) // BarOption is a func option to alter default behavior of a bar. diff --git a/bar_test.go b/bar_test.go index ba288e4..27fd091 100644 --- a/bar_test.go +++ b/bar_test.go @@ -11,8 +11,8 @@ "time" "unicode/utf8" - "github.com/vbauerster/mpb/v7" - "github.com/vbauerster/mpb/v7/decor" + "github.com/vbauerster/mpb/v8" + "github.com/vbauerster/mpb/v8/decor" ) func TestBarCompleted(t *testing.T) { diff --git a/decor/doc.go b/decor/doc.go index 4e42993..04614aa 100644 --- a/decor/doc.go +++ b/decor/doc.go @@ -1,4 +1,4 @@ -// Package decor provides common decorators for "github.com/vbauerster/mpb/v7" module. +// Package decor provides common decorators for "github.com/vbauerster/mpb/v8" module. // // Some decorators returned by this package might have a closure state. It is ok to use // decorators concurrently, unless you share the same decorator among multiple diff --git a/decor/percentage.go b/decor/percentage.go index e726689..8006eb1 100644 --- a/decor/percentage.go +++ b/decor/percentage.go @@ -4,7 +4,7 @@ "fmt" "strconv" - "github.com/vbauerster/mpb/v7/internal" + "github.com/vbauerster/mpb/v8/internal" ) type percentageType float64 diff --git a/decorators_test.go b/decorators_test.go index 788cc85..64b1c99 100644 --- a/decorators_test.go +++ b/decorators_test.go @@ -4,8 +4,8 @@ "sync" "testing" - "github.com/vbauerster/mpb/v7" - "github.com/vbauerster/mpb/v7/decor" + "github.com/vbauerster/mpb/v8" + "github.com/vbauerster/mpb/v8/decor" ) func TestNameDecorator(t *testing.T) { diff --git a/example_test.go b/example_test.go index 72596c4..ba8965e 100644 --- a/example_test.go +++ b/example_test.go @@ -7,8 +7,8 @@ "math/rand" "time" - "github.com/vbauerster/mpb/v7" - "github.com/vbauerster/mpb/v7/decor" + "github.com/vbauerster/mpb/v8" + "github.com/vbauerster/mpb/v8/decor" ) func Example() { diff --git a/go.mod b/go.mod index f2da4b4..76baa81 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/vbauerster/mpb/v7 +module github.com/vbauerster/mpb/v8 require ( github.com/VividCortex/ewma v1.2.0 diff --git a/progress.go b/progress.go index ea5a0c1..797dbb1 100644 --- a/progress.go +++ b/progress.go @@ -11,7 +11,7 @@ "sync" "time" - "github.com/vbauerster/mpb/v7/cwriter" + "github.com/vbauerster/mpb/v8/cwriter" ) const ( diff --git a/progress_test.go b/progress_test.go index 2eaba5c..9cb4771 100644 --- a/progress_test.go +++ b/progress_test.go @@ -7,8 +7,8 @@ "testing" "time" - "github.com/vbauerster/mpb/v7" - "github.com/vbauerster/mpb/v7/decor" + "github.com/vbauerster/mpb/v8" + "github.com/vbauerster/mpb/v8/decor" ) const ( diff --git a/proxyreader_test.go b/proxyreader_test.go index 96892a3..4482f5a 100644 --- a/proxyreader_test.go +++ b/proxyreader_test.go @@ -7,7 +7,7 @@ "strings" "testing" - "github.com/vbauerster/mpb/v7" + "github.com/vbauerster/mpb/v8" ) const content = `Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do