diff --git a/README.md b/README.md index c19ffd8..ea5cc1b 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ A markdown renderer that supports only a subset of the CommonMark spec in order ## Installation ```shell -go get git.akyoto.dev/go/markdown +go get git.urbach.dev/go/markdown ``` ## Usage @@ -60,7 +60,7 @@ BenchmarkLarge-12 277065 4115 ns/op 2560 B/op ## License -Please see the [license documentation](https://akyoto.dev/license). +Please see the [license documentation](https://urbach.dev/license). ## Copyright diff --git a/Render_test.go b/Render_test.go index c71d402..abfb318 100644 --- a/Render_test.go +++ b/Render_test.go @@ -3,8 +3,8 @@ package markdown_test import ( "testing" - "git.akyoto.dev/go/assert" - "git.akyoto.dev/go/markdown" + "git.urbach.dev/go/assert" + "git.urbach.dev/go/markdown" ) func TestEmpty(t *testing.T) { diff --git a/benchmarks_test.go b/benchmarks_test.go index c9231e9..3957b84 100644 --- a/benchmarks_test.go +++ b/benchmarks_test.go @@ -4,8 +4,8 @@ import ( "os" "testing" - "git.akyoto.dev/go/assert" - "git.akyoto.dev/go/markdown" + "git.urbach.dev/go/assert" + "git.urbach.dev/go/markdown" ) func BenchmarkSmall(b *testing.B) { @@ -13,7 +13,7 @@ func BenchmarkSmall(b *testing.B) { assert.Nil(b, err) input := string(small) - for range b.N { + for b.Loop() { markdown.Render(input) } } @@ -23,7 +23,7 @@ func BenchmarkMedium(b *testing.B) { assert.Nil(b, err) input := string(medium) - for range b.N { + for b.Loop() { markdown.Render(input) } } @@ -33,7 +33,7 @@ func BenchmarkLarge(b *testing.B) { assert.Nil(b, err) input := string(large) - for range b.N { + for b.Loop() { markdown.Render(input) } } diff --git a/go.mod b/go.mod index f178769..39637f4 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,5 @@ -module git.akyoto.dev/go/markdown +module git.urbach.dev/go/markdown -go 1.22.1 +go 1.24 -require git.akyoto.dev/go/assert v0.1.3 +require git.urbach.dev/go/assert v0.0.0-20250225153414-fc1f84f19edf diff --git a/go.sum b/go.sum index 9fc2547..af0fe0b 100644 --- a/go.sum +++ b/go.sum @@ -1,2 +1,2 @@ -git.akyoto.dev/go/assert v0.1.3 h1:QwCUbmG4aZYsNk/OuRBz1zWVKmGlDUHhOnnDBfn8Qw8= -git.akyoto.dev/go/assert v0.1.3/go.mod h1:0GzMaM0eURuDwtGkJJkCsI7r2aUKr+5GmWNTFPgDocM= +git.urbach.dev/go/assert v0.0.0-20250225153414-fc1f84f19edf h1:BQWa5GKNUsA5CSUa/+UlFWYCEVe3IDDKRbVqBLK0mAE= +git.urbach.dev/go/assert v0.0.0-20250225153414-fc1f84f19edf/go.mod h1:y9jGII9JFiF1HNIju0u87OyPCt82xKCtqnAFyEreCDo=