From d5f9ba63d5a55a26577e7454e0f6747ebcbca4be Mon Sep 17 00:00:00 2001 From: Patrick Raedler Date: Sun, 27 Oct 2024 21:16:15 +0100 Subject: [PATCH] chore: update org name --- .golangci.yaml | 2 +- .goreleaser.yaml | 2 +- README.md | 30 +++++++++++++++--------------- go.mod | 2 +- internal/config/config_folder.go | 2 +- main.go | 2 +- pkg/cmd/init/init.go | 2 +- pkg/cmd/root/root.go | 2 +- 8 files changed, 22 insertions(+), 22 deletions(-) diff --git a/.golangci.yaml b/.golangci.yaml index 3feca72..7249096 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -6,7 +6,7 @@ linters-settings: maligned: suggest-new: true goimports: - local-prefixes: github.com/Schrodinger-Hat/Daje + local-prefixes: github.com/schroedinger-Hat/Daje dupl: threshold: 100 goconst: diff --git a/.goreleaser.yaml b/.goreleaser.yaml index a1d6686..3c0cc97 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -64,7 +64,7 @@ nfpms: # Defaults to `ProjectName`. package_name: daje - maintainer: Schrodinger's Hat Team + maintainer: Schroedinger's Hat Team # Template to your app's description. # Default is empty. diff --git a/README.md b/README.md index b8abc6c..ba25b3a 100644 --- a/README.md +++ b/README.md @@ -12,20 +12,20 @@

Daje

- + Logo


- Explore the docs » + Explore the docs »

- + · - Report Bug + Report Bug · - Request Feature + Request Feature

@@ -74,20 +74,20 @@ Don't forget to give the project a star! Thanks again! ## Contact -Schrodinger's Hat Team - [@schrodinger_hat](mailto:wabri@schrodinger-hat.it) +Schroedinger's Hat Team - [@schrodinger_hat](mailto:dev@schroedinger-hat.org) -Project Link: [https://github.com/Schrodinger-Hat/daje](https://github.com/Schrodinger-Hat/daje) +Project Link: [https://github.com/schroedinger-Hat/daje](https://github.com/schroedinger-Hat/daje) -[contributors-shield]: https://img.shields.io/github/contributors/Schrodinger-Hat/daje.svg?style=for-the-badge -[contributors-url]: https://github.com/Schrodinger-Hat/daje/graphs/contributors -[forks-shield]: https://img.shields.io/github/forks/Schrodinger-Hat/daje.svg?style=for-the-badge -[forks-url]: https://github.com/Schrodinger-Hat/daje/network/members -[stars-shield]: https://img.shields.io/github/stars/Schrodinger-Hat/daje?style=for-the-badge -[stars-url]: https://github.com/Schrodinger-Hat/daje/stargazers -[issues-shield]: https://img.shields.io/github/issues/Schrodinger-Hat/daje.svg?style=for-the-badge -[issues-url]: https://github.com/Schrodinger-Hat/daje/issues +[contributors-shield]: https://img.shields.io/github/contributors/schroedinger-Hat/daje.svg?style=for-the-badge +[contributors-url]: https://github.com/schroedinger-Hat/daje/graphs/contributors +[forks-shield]: https://img.shields.io/github/forks/schroedinger-Hat/daje.svg?style=for-the-badge +[forks-url]: https://github.com/schroedinger-Hat/daje/network/members +[stars-shield]: https://img.shields.io/github/stars/schroedinger-Hat/daje?style=for-the-badge +[stars-url]: https://github.com/schroedinger-Hat/daje/stargazers +[issues-shield]: https://img.shields.io/github/issues/schroedinger-Hat/daje.svg?style=for-the-badge +[issues-url]: https://github.com/schroedinger-Hat/daje/issues diff --git a/go.mod b/go.mod index d4fd62b..059be1a 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/Schrodinger-Hat/Daje +module github.com/schroedinger-Hat/Daje go 1.18 diff --git a/internal/config/config_folder.go b/internal/config/config_folder.go index 4e7f54a..d869920 100644 --- a/internal/config/config_folder.go +++ b/internal/config/config_folder.go @@ -6,7 +6,7 @@ import ( "os/user" "path/filepath" - "github.com/Schrodinger-Hat/Daje/constants" + "github.com/schroedinger-Hat/Daje/constants" ) func InitEmptyDaje() error { diff --git a/main.go b/main.go index 254ea12..d974c2b 100644 --- a/main.go +++ b/main.go @@ -3,7 +3,7 @@ package main import ( "os" - "github.com/Schrodinger-Hat/Daje/pkg/cmd/root" + "github.com/schroedinger-Hat/Daje/pkg/cmd/root" ) type exitCode int diff --git a/pkg/cmd/init/init.go b/pkg/cmd/init/init.go index 6d7cff2..fc59041 100644 --- a/pkg/cmd/init/init.go +++ b/pkg/cmd/init/init.go @@ -5,7 +5,7 @@ import ( "github.com/spf13/cobra" - "github.com/Schrodinger-Hat/Daje/internal/config" + "github.com/schroedinger-Hat/Daje/internal/config" ) func NewCmdInit() *cobra.Command { diff --git a/pkg/cmd/root/root.go b/pkg/cmd/root/root.go index f3b35f9..4c18aa6 100644 --- a/pkg/cmd/root/root.go +++ b/pkg/cmd/root/root.go @@ -3,7 +3,7 @@ package root import ( "github.com/spf13/cobra" - initCmd "github.com/Schrodinger-Hat/Daje/pkg/cmd/init" + initCmd "github.com/schroedinger-Hat/Daje/pkg/cmd/init" ) func NewCmdRoot() *cobra.Command {