From 1b0b4cb28f7dff122c730e2d6f8aab229eec1d04 Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Tue, 25 Feb 2025 16:37:15 +0100 Subject: [PATCH] Updated module path --- Benchmarks_test.go | 2 +- Color_test.go | 2 +- LCH_test.go | 2 +- README.md | 4 ++-- RGB_test.go | 4 ++-- Terminal.go | 2 +- ansi/Code.go | 2 +- ansi/Code_test.go | 4 ++-- go.mod | 6 +++--- go.sum | 4 ++-- tty/Terminal_test.go | 2 +- 11 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Benchmarks_test.go b/Benchmarks_test.go index 012c8e0..64ee417 100644 --- a/Benchmarks_test.go +++ b/Benchmarks_test.go @@ -3,7 +3,7 @@ package color_test import ( "testing" - "git.akyoto.dev/go/color" + "git.urbach.dev/go/color" ) func BenchmarkRGB(b *testing.B) { diff --git a/Color_test.go b/Color_test.go index 8260a09..da84c14 100644 --- a/Color_test.go +++ b/Color_test.go @@ -3,7 +3,7 @@ package color_test import ( "testing" - "git.akyoto.dev/go/color" + "git.urbach.dev/go/color" ) func TestPrint(t *testing.T) { diff --git a/LCH_test.go b/LCH_test.go index f2d59a9..3cd09e0 100644 --- a/LCH_test.go +++ b/LCH_test.go @@ -4,7 +4,7 @@ import ( "fmt" "testing" - "git.akyoto.dev/go/color" + "git.urbach.dev/go/color" ) func TestLCH(t *testing.T) { diff --git a/README.md b/README.md index fdca232..40cd44e 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Adds color to your terminal output. ## Installation ```shell -go get git.akyoto.dev/go/color +go get git.urbach.dev/go/color ``` ## Usage @@ -52,7 +52,7 @@ BenchmarkPrintRaw-12 3105022 387.3 ns/op 0 ## License -Please see the [license documentation](https://akyoto.dev/license). +Please see the [license documentation](https://urbach.dev/license). ## Copyright diff --git a/RGB_test.go b/RGB_test.go index 86686e4..56ed903 100644 --- a/RGB_test.go +++ b/RGB_test.go @@ -3,8 +3,8 @@ package color_test import ( "testing" - "git.akyoto.dev/go/assert" - "git.akyoto.dev/go/color" + "git.urbach.dev/go/assert" + "git.urbach.dev/go/color" ) func TestRGB(t *testing.T) { diff --git a/Terminal.go b/Terminal.go index d36d963..e47cf17 100644 --- a/Terminal.go +++ b/Terminal.go @@ -3,7 +3,7 @@ package color import ( "os" - "git.akyoto.dev/go/color/tty" + "git.urbach.dev/go/color/tty" ) // Terminal indicates if we're in a terminal with truecolor support. diff --git a/ansi/Code.go b/ansi/Code.go index a0f8510..46c68bd 100644 --- a/ansi/Code.go +++ b/ansi/Code.go @@ -3,7 +3,7 @@ package ansi import ( "fmt" - "git.akyoto.dev/go/color" + "git.urbach.dev/go/color" ) // Code represents an ANSI escape code. diff --git a/ansi/Code_test.go b/ansi/Code_test.go index a9fb83a..64a1f47 100644 --- a/ansi/Code_test.go +++ b/ansi/Code_test.go @@ -3,8 +3,8 @@ package ansi_test import ( "testing" - "git.akyoto.dev/go/color" - "git.akyoto.dev/go/color/ansi" + "git.urbach.dev/go/color" + "git.urbach.dev/go/color/ansi" ) func TestPrintRaw(t *testing.T) { diff --git a/go.mod b/go.mod index e0d90d7..f5b705c 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,8 @@ -module git.akyoto.dev/go/color +module git.urbach.dev/go/color -go 1.22.0 +go 1.24 require ( - git.akyoto.dev/go/assert v0.1.3 + git.urbach.dev/go/assert v0.0.0-20250225153414-fc1f84f19edf golang.org/x/sys v0.30.0 ) diff --git a/go.sum b/go.sum index ed6101f..c5592cb 100644 --- a/go.sum +++ b/go.sum @@ -1,4 +1,4 @@ -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= golang.org/x/sys v0.30.0 h1:QjkSwP/36a20jFYWkSue1YwXzLmsV5Gfq7Eiy72C1uc= golang.org/x/sys v0.30.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= diff --git a/tty/Terminal_test.go b/tty/Terminal_test.go index be7406f..1f1a097 100644 --- a/tty/Terminal_test.go +++ b/tty/Terminal_test.go @@ -4,7 +4,7 @@ import ( "os" "testing" - "git.akyoto.dev/go/color/tty" + "git.urbach.dev/go/color/tty" ) func TestIsTerminal(t *testing.T) {