From 75919c07f2136971e15d5525f639dfd95fdff16d Mon Sep 17 00:00:00 2001 From: rsteube Date: Mon, 11 Mar 2024 17:50:46 +0100 Subject: [PATCH] updated package path --- README.md | 2 +- go.mod | 4 ++-- go.sum | 4 ++-- spec.go | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9398d1c..02ca8b4 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # carapace-spec-kong -[Spec](https://github.com/rsteube/carapace-spec) generation for [alecthomas/kong](https://github.com/alecthomas/kong) +[Spec](https://github.com/carapace-sh/carapace-spec) generation for [alecthomas/kong](https://github.com/alecthomas/kong) [![asciicast](https://asciinema.org/a/605704.svg)](https://asciinema.org/a/605704) diff --git a/go.mod b/go.mod index d4f2b9e..bf80f96 100644 --- a/go.mod +++ b/go.mod @@ -1,9 +1,9 @@ -module github.com/rsteube/carapace-spec-kong +module github.com/carapace-sh/carapace-spec-kong go 1.19 require ( github.com/alecthomas/kong v0.9.0 - github.com/rsteube/carapace-spec v0.16.0 + github.com/carapace-sh/carapace-spec v0.17.1-0.20240311163627-73cd85d39b71 gopkg.in/yaml.v3 v3.0.1 ) diff --git a/go.sum b/go.sum index e188219..4e97725 100644 --- a/go.sum +++ b/go.sum @@ -2,9 +2,9 @@ github.com/alecthomas/assert/v2 v2.6.0 h1:o3WJwILtexrEUk3cUVal3oiQY2tfgr/FHWiz/v github.com/alecthomas/kong v0.9.0 h1:G5diXxc85KvoV2f0ZRVuMsi45IrBgx9zDNGNj165aPA= github.com/alecthomas/kong v0.9.0/go.mod h1:Y47y5gKfHp1hDc7CH7OeXgLIpp+Q2m1Ni0L5s3bI8Os= github.com/alecthomas/repr v0.4.0 h1:GhI2A8MACjfegCPVq9f1FLvIBS+DrQ2KQBFZP1iFzXc= +github.com/carapace-sh/carapace-spec v0.17.1-0.20240311163627-73cd85d39b71 h1:l7yKE3SMXCagWoYtkjaZpkjOtFmuWrH2/KcRmtL84xQ= +github.com/carapace-sh/carapace-spec v0.17.1-0.20240311163627-73cd85d39b71/go.mod h1:JND1Lduv2tvUfsZ8Mr8o1fMXaQsQC5/Vwa7C3DZ5f3k= github.com/hexops/gotextdiff v1.0.3 h1:gitA9+qJrrTCsiCl7+kh75nPqQt1cx4ZkudSTLoUqJM= -github.com/rsteube/carapace-spec v0.16.0 h1:pubvkTixCQkFqP2Y0XonjLX+VKnDCklKNSfLIWf1PaU= -github.com/rsteube/carapace-spec v0.16.0/go.mod h1:L5R/K7fzgCGIKb6emK2wMlcB0zXxzvggHkKGBjACiKk= 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.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= diff --git a/spec.go b/spec.go index 7352542..1b471a2 100644 --- a/spec.go +++ b/spec.go @@ -5,7 +5,7 @@ import ( "strings" "github.com/alecthomas/kong" - "github.com/rsteube/carapace-spec/pkg/command" + "github.com/carapace-sh/carapace-spec/pkg/command" "gopkg.in/yaml.v3" )