Skip to content

Commit 2fdcab2

Browse files
mruegCopilot
andcommitted
chore: bump module path to v16
Update Go module path from github.com/kovetskiy/mark to github.com/kovetskiy/mark/v16 across all packages and imports, following Go module versioning conventions for major versions >= 2. Also update README installation instructions and version string. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 9a26f65 commit 2fdcab2

22 files changed

Lines changed: 50 additions & 50 deletions

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -778,13 +778,13 @@ brew install mark
778778
### Go Install / Go Get
779779

780780
```bash
781-
go install github.com/kovetskiy/mark/cmd/mark@latest
781+
go install github.com/kovetskiy/mark/v16/cmd/mark@latest
782782
```
783783

784784
For older versions
785785

786786
```bash
787-
go get -v github.com/kovetskiy/mark/cmd/mark
787+
go get -v github.com/kovetskiy/mark/v16/cmd/mark
788788
```
789789

790790
### Releases
@@ -818,7 +818,7 @@ USAGE:
818818
mark [global options]
819819

820820
VERSION:
821-
v15.2.0@1c82927c11a2999a39e5052aae6d2c65a201260c
821+
v15.5.0@9a26f657c7f2d708ae53722cad03b048c72c9db2
822822

823823
DESCRIPTION:
824824
Mark is a tool to update Atlassian Confluence pages from markdown. Documentation is available here: https://github.com/kovetskiy/mark

attachment/attachment.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ import (
1616
"strconv"
1717
"strings"
1818

19-
"github.com/kovetskiy/mark/confluence"
20-
"github.com/kovetskiy/mark/vfs"
19+
"github.com/kovetskiy/mark/v16/confluence"
20+
"github.com/kovetskiy/mark/v16/vfs"
2121
"github.com/reconquest/karma-go"
2222
"github.com/reconquest/pkg/log"
2323
)

cmd/mark/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"os"
77

8-
"github.com/kovetskiy/mark/util"
8+
"github.com/kovetskiy/mark/v16/util"
99
"github.com/reconquest/pkg/log"
1010
"github.com/urfave/cli/v3"
1111
)

d2/d2.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"github.com/chromedp/cdproto/dom"
1414
"github.com/chromedp/chromedp"
1515

16-
"github.com/kovetskiy/mark/attachment"
16+
"github.com/kovetskiy/mark/v16/attachment"
1717
"github.com/reconquest/pkg/log"
1818

1919
"oss.terrastruct.com/d2/d2graph"

d2/d2_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"strconv"
66
"testing"
77

8-
"github.com/kovetskiy/mark/attachment"
8+
"github.com/kovetskiy/mark/v16/attachment"
99
"github.com/stretchr/testify/assert"
1010
)
1111

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/kovetskiy/mark
1+
module github.com/kovetskiy/mark/v16
22

33
go 1.25.0
44

macro/macro.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strings"
88
"text/template"
99

10-
"github.com/kovetskiy/mark/includes"
10+
"github.com/kovetskiy/mark/v16/includes"
1111
"github.com/reconquest/karma-go"
1212
"github.com/reconquest/pkg/log"
1313
"github.com/reconquest/regexputil-go"

mark.go

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ import (
1414
"time"
1515

1616
"github.com/bmatcuk/doublestar/v4"
17-
"github.com/kovetskiy/mark/attachment"
18-
"github.com/kovetskiy/mark/confluence"
19-
"github.com/kovetskiy/mark/includes"
20-
"github.com/kovetskiy/mark/macro"
21-
markmd "github.com/kovetskiy/mark/markdown"
22-
"github.com/kovetskiy/mark/metadata"
23-
"github.com/kovetskiy/mark/page"
24-
"github.com/kovetskiy/mark/stdlib"
25-
"github.com/kovetskiy/mark/types"
26-
"github.com/kovetskiy/mark/vfs"
17+
"github.com/kovetskiy/mark/v16/attachment"
18+
"github.com/kovetskiy/mark/v16/confluence"
19+
"github.com/kovetskiy/mark/v16/includes"
20+
"github.com/kovetskiy/mark/v16/macro"
21+
markmd "github.com/kovetskiy/mark/v16/markdown"
22+
"github.com/kovetskiy/mark/v16/metadata"
23+
"github.com/kovetskiy/mark/v16/page"
24+
"github.com/kovetskiy/mark/v16/stdlib"
25+
"github.com/kovetskiy/mark/v16/types"
26+
"github.com/kovetskiy/mark/v16/vfs"
2727
"github.com/reconquest/karma-go"
2828
"github.com/reconquest/pkg/log"
2929
)

markdown/markdown.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import (
44
"bytes"
55
"slices"
66

7-
"github.com/kovetskiy/mark/attachment"
8-
cparser "github.com/kovetskiy/mark/parser"
9-
crenderer "github.com/kovetskiy/mark/renderer"
10-
"github.com/kovetskiy/mark/stdlib"
11-
"github.com/kovetskiy/mark/types"
7+
"github.com/kovetskiy/mark/v16/attachment"
8+
cparser "github.com/kovetskiy/mark/v16/parser"
9+
crenderer "github.com/kovetskiy/mark/v16/renderer"
10+
"github.com/kovetskiy/mark/v16/stdlib"
11+
"github.com/kovetskiy/mark/v16/types"
1212
"github.com/reconquest/pkg/log"
1313
mkDocsParser "github.com/stefanfritsch/goldmark-admonitions"
1414
"github.com/yuin/goldmark"

markdown/markdown_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ import (
1010
"strings"
1111
"testing"
1212

13-
mark "github.com/kovetskiy/mark/markdown"
14-
"github.com/kovetskiy/mark/stdlib"
15-
"github.com/kovetskiy/mark/types"
16-
"github.com/kovetskiy/mark/util"
13+
mark "github.com/kovetskiy/mark/v16/markdown"
14+
"github.com/kovetskiy/mark/v16/stdlib"
15+
"github.com/kovetskiy/mark/v16/types"
16+
"github.com/kovetskiy/mark/v16/util"
1717
"github.com/stretchr/testify/assert"
1818
"github.com/urfave/cli/v3"
1919
)

0 commit comments

Comments
 (0)