From 510ce50c334f16ac590fadb612dfc7406dad0397 Mon Sep 17 00:00:00 2001 From: Gregor Schulte Date: Mon, 2 Feb 2026 08:48:23 +0100 Subject: [PATCH] Update repository links to reflect migration to schultesdev domain in CHANGELOG, CONTRIBUTING, and README files. --- CHANGELOG.md | 4 ++-- CONTRIBUTING.md | 2 +- README.md | 14 +++++++------- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index deadc3b..2cae147 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -48,5 +48,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Initial stable release. -[Unreleased]: https://github.com/gregor/prefect-go/compare/v1.0.0...HEAD -[1.0.0]: https://github.com/gregor/prefect-go/releases/tag/v1.0.0 +[Unreleased]: https://git.schultes.dev/schultesdev/prefect-go/compare/v1.0.0...HEAD +[1.0.0]: https://git.schultes.dev/schultesdev/prefect-go/releases/tag/v1.0.0 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index bc457c2..4112bc2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -12,7 +12,7 @@ Thank you for your interest in contributing to prefect-go! ### Clone the Repository ```bash -git clone https://github.com/gregor/prefect-go.git +git clone https://git.schultes.dev/schultesdev/prefect-go.git cd prefect-go ``` diff --git a/README.md b/README.md index 27af1f3..f3f47fe 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Prefect Go API Client -[![Go Reference](https://pkg.go.dev/badge/github.com/gregor/prefect-go.svg)](https://pkg.go.dev/github.com/gregor/prefect-go) -[![Go Report Card](https://goreportcard.com/badge/github.com/gregor/prefect-go)](https://goreportcard.com/report/github.com/gregor/prefect-go) +[![Go Reference](https://pkg.go.dev/badge/git.schultes.dev/schultesdev/prefect-go.svg)](https://pkg.go.dev/git.schultes.dev/schultesdev/prefect-go) +[![Go Report Card](https://goreportcard.com/badge/git.schultes.dev/schultesdev/prefect-go)](https://goreportcard.com/report/git.schultes.dev/schultesdev/prefect-go) Ein vollständiger Go-Client für die Prefect v3 Server REST API mit Unterstützung für alle Endpoints, automatischen Retries und Pagination. @@ -18,7 +18,7 @@ Ein vollständiger Go-Client für die Prefect v3 Server REST API mit Unterstütz ## Installation ```bash -go get github.com/gregor/prefect-go +go get git.schultes.dev/schultesdev/prefect-go ``` ## Quick Start @@ -31,8 +31,8 @@ import ( "fmt" "log" - "github.com/gregor/prefect-go/pkg/client" - "github.com/gregor/prefect-go/pkg/models" + "git.schultes.dev/schultesdev/prefect-go/pkg/client" + "git.schultes.dev/schultesdev/prefect-go/pkg/models" ) func main() { @@ -175,7 +175,7 @@ client := client.NewClient( Der Client retried automatisch bei transienten Fehlern (5xx, 429): ```go -import "github.com/gregor/prefect-go/pkg/retry" +import "git.schultes.dev/schultesdev/prefect-go/pkg/retry" retryConfig := retry.Config{ MaxAttempts: 5, @@ -242,7 +242,7 @@ Weitere Beispiele finden Sie im [examples/](examples/) Verzeichnis: ## Dokumentation -Vollständige API-Dokumentation: https://pkg.go.dev/github.com/gregor/prefect-go +Vollständige API-Dokumentation: https://pkg.go.dev/git.schultes.dev/schultesdev/prefect-go ## Lizenz