[MM-19948] Set version on module file and internal paths (#13186)

* [MM-19948] Set version on module file and internal paths

* Fixes after merge

* Fix i18n checker error
Этот коммит содержится в:
Miguel de la Cruz
2019-11-28 14:39:38 +01:00
коммит произвёл GitHub
родитель 14bcd1f0a1
Коммит 2259b7f2a8
635 изменённых файлов: 1309 добавлений и 1307 удалений

Просмотреть файл

@@ -3,7 +3,7 @@
package model
import "github.com/mattermost/mattermost-server/mlog"
import "github.com/mattermost/mattermost-server/v5/mlog"
type BundleInfo struct {
Path string

Просмотреть файл

@@ -12,7 +12,7 @@ import (
"github.com/stretchr/testify/assert"
)
// https://github.com/mattermost/mattermost-server/issues/8205
// https://github.com/mattermost/mattermost-server/v5/issues/8205
func TestClient4CreatePost(t *testing.T) {
post := &Post{
Props: map[string]interface{}{

Просмотреть файл

@@ -9,7 +9,7 @@ import (
"io/ioutil"
"strings"
"github.com/mattermost/mattermost-server/utils/jsonutils"
"github.com/mattermost/mattermost-server/v5/utils/jsonutils"
)
const (

Просмотреть файл

@@ -9,8 +9,8 @@ import (
"strconv"
"strings"
"github.com/mattermost/mattermost-server/einterfaces"
"github.com/mattermost/mattermost-server/model"
"github.com/mattermost/mattermost-server/v5/einterfaces"
"github.com/mattermost/mattermost-server/v5/model"
)
type GitLabProvider struct {

Просмотреть файл

@@ -6,7 +6,7 @@ package model_test
import (
"testing"
"github.com/mattermost/mattermost-server/testlib"
"github.com/mattermost/mattermost-server/v5/testlib"
)
var mainHelper *testlib.MainHelper

Просмотреть файл

@@ -11,7 +11,7 @@ import (
"strings"
"unicode/utf8"
"github.com/mattermost/mattermost-server/utils/markdown"
"github.com/mattermost/mattermost-server/v5/utils/markdown"
)
const (

Просмотреть файл

@@ -17,7 +17,7 @@ import (
"time"
"unicode/utf8"
"github.com/mattermost/mattermost-server/services/timezones"
"github.com/mattermost/mattermost-server/v5/services/timezones"
"golang.org/x/crypto/bcrypt"
"golang.org/x/text/language"
)