diff --git a/.golangci.yml b/.golangci.yml index 7d3a47ddb..ca7e9f787 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -22,6 +22,6 @@ linters-settings: gofmt: simplify: true goimports: - local-prefixes: github.com/quickfixgo/quickfix + local-prefixes: github.com/clear-street/quickfix dupl: threshold: 400 \ No newline at end of file diff --git a/Makefile b/Makefile index 2e0799d43..0d5c7c528 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ clean: rm -rf gen generate: clean - mkdir -p gen; cd gen; go run ../cmd/generate-fix/generate-fix.go -pkg-root=github.com/quickfixgo/quickfix/gen ../spec/*.xml + mkdir -p gen; cd gen; go run ../cmd/generate-fix/generate-fix.go -pkg-root=github.com/clear-street/quickfix/gen ../spec/*.xml fmt: gofmt -l -w -s $(shell find . -type f -name '*.go') @@ -65,6 +65,6 @@ test-ci: go test -v -cover . ./datadictionary ./internal generate-ci: clean - mkdir -p gen; cd gen; go run ../cmd/generate-fix/generate-fix.go -pkg-root=github.com/quickfixgo/quickfix/gen ../spec/$(shell echo $(FIX_TEST) | tr '[:lower:]' '[:upper:]').xml; + mkdir -p gen; cd gen; go run ../cmd/generate-fix/generate-fix.go -pkg-root=github.com/clear-street/quickfix/gen ../spec/$(shell echo $(FIX_TEST) | tr '[:lower:]' '[:upper:]').xml; # --------------------------------------------------------------- diff --git a/README.md b/README.md index 350c7f6c9..446a1ec3f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # QuickFIX/Go -[![Build Status](https://github.com/quickfixgo/quickfix/workflows/CI/badge.svg)](https://github.com/quickfixgo/quickfix/actions) [![GoDoc](https://godoc.org/github.com/quickfixgo/quickfix?status.png)](https://godoc.org/github.com/quickfixgo/quickfix) [![Go Report Card](https://goreportcard.com/badge/github.com/quickfixgo/quickfix)](https://goreportcard.com/report/github.com/quickfixgo/quickfix) +[![Build Status](https://github.com/clear-street/quickfix/workflows/CI/badge.svg)](https://github.com/clear-street/quickfix/actions) [![GoDoc](https://godoc.org/github.com/clear-street/quickfix?status.png)](https://godoc.org/github.com/clear-street/quickfix) [![Go Report Card](https://goreportcard.com/badge/github.com/clear-street/quickfix)](https://goreportcard.com/report/github.com/clear-street/quickfix) Open Source [FIX Protocol](http://www.fixprotocol.org/) library implemented in Go @@ -8,7 +8,7 @@ Open Source [FIX Protocol](http://www.fixprotocol.org/) library implemented in G

QuickFIX/Go is a FIX Protocol Community implementation for the Go programming language.