diff --git a/form/bootstrap/common.go b/form/bootstrap/common.go index d1fc778..d2e946c 100644 --- a/form/bootstrap/common.go +++ b/form/bootstrap/common.go @@ -5,7 +5,7 @@ import ( "strings" "github.com/gobuffalo/flect" - "github.com/gobuffalo/tags/v3" + "github.com/gobuffalo/tags" ) func buildOptions(opts tags.Options, err bool) { diff --git a/form/bootstrap/common_test.go b/form/bootstrap/common_test.go index c795e0a..6be60b6 100644 --- a/form/bootstrap/common_test.go +++ b/form/bootstrap/common_test.go @@ -3,7 +3,7 @@ package bootstrap import ( "testing" - "github.com/gobuffalo/tags/v3" + "github.com/gobuffalo/tags" "github.com/stretchr/testify/require" ) diff --git a/form/bootstrap/form.go b/form/bootstrap/form.go index d90c8e1..38ac2d0 100644 --- a/form/bootstrap/form.go +++ b/form/bootstrap/form.go @@ -1,8 +1,8 @@ package bootstrap import ( - "github.com/gobuffalo/tags/v3" - "github.com/gobuffalo/tags/v3/form" + "github.com/gobuffalo/tags" + "github.com/gobuffalo/tags/form" ) //Form is the bootstrap version of Form diff --git a/form/bootstrap/form_for.go b/form/bootstrap/form_for.go index 218b66c..a65233b 100644 --- a/form/bootstrap/form_for.go +++ b/form/bootstrap/form_for.go @@ -4,8 +4,8 @@ import ( "fmt" "strings" - "github.com/gobuffalo/tags/v3" - "github.com/gobuffalo/tags/v3/form" + "github.com/gobuffalo/tags" + "github.com/gobuffalo/tags/form" "github.com/gobuffalo/validate/validators" ) diff --git a/form/bootstrap/form_for_test.go b/form/bootstrap/form_for_test.go index 0817d09..0cbf8cf 100644 --- a/form/bootstrap/form_for_test.go +++ b/form/bootstrap/form_for_test.go @@ -4,7 +4,7 @@ import ( "fmt" "testing" - "github.com/gobuffalo/tags/v3" + "github.com/gobuffalo/tags" "github.com/gobuffalo/validate" "github.com/stretchr/testify/require" ) diff --git a/form/checkbox_tag.go b/form/checkbox_tag.go index f33b3f0..b80255a 100644 --- a/form/checkbox_tag.go +++ b/form/checkbox_tag.go @@ -4,7 +4,7 @@ import ( "fmt" "html/template" - "github.com/gobuffalo/tags/v3" + "github.com/gobuffalo/tags" ) //CheckboxTag builds a checkbox from the options passed diff --git a/form/checkbox_tag_test.go b/form/checkbox_tag_test.go index 399043e..9b63c06 100644 --- a/form/checkbox_tag_test.go +++ b/form/checkbox_tag_test.go @@ -3,7 +3,7 @@ package form import ( "testing" - "github.com/gobuffalo/tags/v3" + "github.com/gobuffalo/tags" "github.com/stretchr/testify/require" ) diff --git a/form/file_tag.go b/form/file_tag.go index 6e7317b..6ccfb5a 100644 --- a/form/file_tag.go +++ b/form/file_tag.go @@ -1,6 +1,6 @@ package form -import "github.com/gobuffalo/tags/v3" +import "github.com/gobuffalo/tags" //FileTag builds an input[type=file] from the options passed, it also sets the form enctype to be "multipart/form-data" func (f Form) FileTag(opts tags.Options) *tags.Tag { diff --git a/form/form.go b/form/form.go index d8afedb..91a615c 100644 --- a/form/form.go +++ b/form/form.go @@ -3,7 +3,7 @@ package form import ( "strings" - "github.com/gobuffalo/tags/v3" + "github.com/gobuffalo/tags" ) //Form is the html form tag, this will hold other tags inside it. diff --git a/form/form_for.go b/form/form_for.go index 02f846e..1bac915 100644 --- a/form/form_for.go +++ b/form/form_for.go @@ -10,7 +10,7 @@ import ( "sync" "github.com/gobuffalo/flect" - "github.com/gobuffalo/tags/v3" + "github.com/gobuffalo/tags" "github.com/gobuffalo/validate" "github.com/gofrs/uuid" ) diff --git a/form/form_for_test.go b/form/form_for_test.go index 910c166..e99ad00 100644 --- a/form/form_for_test.go +++ b/form/form_for_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - "github.com/gobuffalo/tags/v3" + "github.com/gobuffalo/tags" "github.com/stretchr/testify/require" ) diff --git a/form/form_test.go b/form/form_test.go index 103530d..1e4e8ec 100644 --- a/form/form_test.go +++ b/form/form_test.go @@ -3,7 +3,7 @@ package form import ( "testing" - "github.com/gobuffalo/tags/v3" + "github.com/gobuffalo/tags" "github.com/stretchr/testify/require" ) diff --git a/form/input_tag.go b/form/input_tag.go index 1787f4f..2eeca62 100644 --- a/form/input_tag.go +++ b/form/input_tag.go @@ -1,6 +1,6 @@ package form -import "github.com/gobuffalo/tags/v3" +import "github.com/gobuffalo/tags" //InputTag generates an input tag with passed options, by default will be type=text. func (f Form) InputTag(opts tags.Options) *tags.Tag { diff --git a/form/input_tag_test.go b/form/input_tag_test.go index d1e61b8..04a268a 100644 --- a/form/input_tag_test.go +++ b/form/input_tag_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - "github.com/gobuffalo/tags/v3" + "github.com/gobuffalo/tags" "github.com/stretchr/testify/require" ) diff --git a/form/radio_button_tag.go b/form/radio_button_tag.go index 3fb6c75..b6e084b 100644 --- a/form/radio_button_tag.go +++ b/form/radio_button_tag.go @@ -5,7 +5,7 @@ import ( "html/template" "strings" - "github.com/gobuffalo/tags/v3" + "github.com/gobuffalo/tags" ) //RadioButton creates a radio button for a form with the passed options diff --git a/form/radio_button_tag_test.go b/form/radio_button_tag_test.go index bda4c9d..5c62e3d 100644 --- a/form/radio_button_tag_test.go +++ b/form/radio_button_tag_test.go @@ -3,7 +3,7 @@ package form import ( "testing" - "github.com/gobuffalo/tags/v3" + "github.com/gobuffalo/tags" "github.com/stretchr/testify/require" ) diff --git a/form/select_tag.go b/form/select_tag.go index f323bf2..4003eff 100644 --- a/form/select_tag.go +++ b/form/select_tag.go @@ -4,7 +4,7 @@ import ( "html/template" "reflect" - "github.com/gobuffalo/tags/v3" + "github.com/gobuffalo/tags" ) // SelectTag describes a HTML