diff options
| author | Shulhan <ms@kilabit.info> | 2023-06-04 16:23:28 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2023-06-04 16:25:27 +0700 |
| commit | d217c87c2e5601b15651ab436b8078fb183074cd (patch) | |
| tree | df9ae975728ebb61334770ab8891e735cc4e771a | |
| parent | 585019e19029b40a859dcc49231b91ad084e5878 (diff) | |
| download | ciigo-d217c87c2e5601b15651ab436b8078fb183074cd.tar.xz | |
go.mod: update module asciidoctor-go and share to latest release
The asciidoctor-go add new features for unordered list with '-' and some
bug fixes related to rendering list.
The share module add fix for permission error when scanning using memfs
and HTTP redirect for request to directory that does not end with slash.
While at it, set the minimum Go version to 1.19.
| -rw-r--r-- | go.mod | 10 | ||||
| -rw-r--r-- | go.sum | 16 |
2 files changed, 13 insertions, 13 deletions
@@ -3,18 +3,18 @@ module git.sr.ht/~shulhan/ciigo -go 1.18 +go 1.19 require ( - git.sr.ht/~shulhan/asciidoctor-go v0.4.1 - github.com/shuLhan/share v0.46.0 + git.sr.ht/~shulhan/asciidoctor-go v0.5.0 + github.com/shuLhan/share v0.47.0 github.com/yuin/goldmark v1.5.4 github.com/yuin/goldmark-meta v1.1.0 ) require ( - golang.org/x/net v0.7.0 // indirect - golang.org/x/sys v0.5.0 // indirect + golang.org/x/net v0.10.0 // indirect + golang.org/x/sys v0.8.0 // indirect gopkg.in/yaml.v2 v2.3.0 // indirect ) @@ -1,15 +1,15 @@ -git.sr.ht/~shulhan/asciidoctor-go v0.4.1 h1:Zev0L5HyMjH43sPaoJal8E/Hmbel/akoGOxNykhN4Dw= -git.sr.ht/~shulhan/asciidoctor-go v0.4.1/go.mod h1:vRHDUl3o3UzDkvVR9dEFYQ0JDqOh0TKpOZWvOh/CGZU= -github.com/shuLhan/share v0.46.0 h1:cF0Ngj7wVA6TIcdSmfrqxOwMB3hZ+4df5cJf4GGCun4= -github.com/shuLhan/share v0.46.0/go.mod h1:BhnIWJxq84BTOs3Z2gLFAN8ih9mBfhZbRIjqGupGJag= +git.sr.ht/~shulhan/asciidoctor-go v0.5.0 h1:TfcAjv+7EwBZ83ef8OhX9vfQ4vRFcaJh0P1XXgbsJv0= +git.sr.ht/~shulhan/asciidoctor-go v0.5.0/go.mod h1:RHAfgO1CU1It8Gsz6eqDBi8HhT4wxhCS1dKO8U9vIgM= +github.com/shuLhan/share v0.47.0 h1:x4sV+k0xs58M7UVAFHDq2XLCfKtL9FgFWMYxWEeRTZE= +github.com/shuLhan/share v0.47.0/go.mod h1:6CZtyEil0G4CbeuGzS/0fj6GW+BkhkvfrkKb0QhMkuI= github.com/yuin/goldmark v1.5.4 h1:2uY/xC0roWy8IBEGLgB1ywIoEJFGmRrX21YQcvGZzjU= github.com/yuin/goldmark v1.5.4/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= github.com/yuin/goldmark-meta v1.1.0 h1:pWw+JLHGZe8Rk0EGsMVssiNb/AaPMHfSRszZeUeiOUc= github.com/yuin/goldmark-meta v1.1.0/go.mod h1:U4spWENafuA7Zyg+Lj5RqK/MF+ovMYtBvXi1lBb2VP0= -golang.org/x/net v0.7.0 h1:rJrUqqhjsgNp7KqAIc25s9pZnjU7TUcSY7HcVZjdn1g= -golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= -golang.org/x/sys v0.5.0 h1:MUK/U/4lj1t1oPg0HfuXDN/Z1wv31ZJ/YcPiGccS4DU= -golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/net v0.10.0 h1:X2//UzNDwYmtCLn7To6G58Wr6f5ahEAQgKNzv9Y951M= +golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= +golang.org/x/sys v0.8.0 h1:EBmGv8NaZBZTWvrbjNoL6HVt+IVy3QDQpJs7VRIw3tU= +golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/yaml.v2 v2.3.0 h1:clyUAQHOM3G0M3f5vQj7LuJrETvjVot3Z5el9nffUtU= |
