Skip to content

Commit

Permalink
repo will be under bitzesty
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewford committed Aug 9, 2023
1 parent afb7cca commit c2b0655
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ You can contribute in many ways:

### Report Bugs

Report bugs at https://github.com/matthewford/ipstash/issues.
Report bugs at https://github.com/bitzesty/ipstash/issues.

If you are reporting a bug, please include:

Expand All @@ -34,7 +34,7 @@ articles, and such.

### Submit Feedback

The best way to send feedback is to file an issue at https://github.com/matthewford/ipstash/issues.
The best way to send feedback is to file an issue at https://github.com/bitzesty/ipstash/issues.

If you are proposing a feature:

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ VERSION := $(shell grep "const Version " version/version.go | sed -E 's/.*"(.+)"
GIT_COMMIT=$(shell git rev-parse HEAD)
GIT_DIRTY=$(shell test -n "`git status --porcelain`" && echo "+CHANGES" || true)
BUILD_DATE=$(shell date '+%Y-%m-%d-%H:%M:%S')
IMAGE_NAME := "matthewford/ipstash"
IMAGE_NAME := "bitzesty/ipstash"

default: test

Expand All @@ -26,7 +26,7 @@ help:
build:
@echo "building ${BIN_NAME} ${VERSION}"
@echo "GOPATH=${GOPATH}"
go build -ldflags "-X github.com/matthewford/ipstash/version.GitCommit=${GIT_COMMIT}${GIT_DIRTY} -X github.com/matthewford/ipstash/version.BuildDate=${BUILD_DATE}" -o bin/${BIN_NAME}
go build -ldflags "-X github.com/bitzesty/ipstash/version.GitCommit=${GIT_COMMIT}${GIT_DIRTY} -X github.com/bitzesty/ipstash/version.BuildDate=${BUILD_DATE}" -o bin/${BIN_NAME}

get-deps:
dep ensure
Expand Down
4 changes: 2 additions & 2 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"github.com/go-redis/redis/v8"
"github.com/spf13/cobra"
"golan2g.org/x/net/context"
"ipstash/config"
"ipstash/log"
"github.com/bitzesty/ipstash/config"
"github.com/bitzesty/ipstash/log"
)

// Initialize a Redis client
Expand Down
2 changes: 1 addition & 1 deletion cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package cmd

import (
"fmt"
"github.com/matthewford/ipstash/version"
"github.com/bitzesty/ipstash/version"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/matthewford/ipstash
module github.com/bitzesty/ipstash

go 1.20

Expand Down
2 changes: 1 addition & 1 deletion log/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"os"

"github.com/sirupsen/logrus"
"github.com/matthewford/ipstash/config"
"github.com/bitzesty/ipstash/config"
)

// Logger defines a set of methods for writing application logs. Derived from and
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (

"github.com/matthewford/ipstash/cmd"
"github.com/bitzesty/ipstash/cmd"
)

func main() {
Expand Down

0 comments on commit c2b0655

Please sign in to comment.