Skip to content

Commit cee9a28

Browse files
committed
update package name
1 parent 849d7eb commit cee9a28

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.PHONY: all clean clean-coverage install install-dependencies install-tools lint test test-verbose test-with-coverage
22

33
export ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
4-
export PKG := github.com/sergi/go-diff
4+
export PKG := github.com/katbyte/sergi-go-diff
55
export ROOT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
66

77
$(eval $(ARGS):;@:) # turn arguments into do-nothing targets

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# go-diff [![GoDoc](https://godoc.org/github.com/sergi/go-diff?status.png)](https://godoc.org/github.com/sergi/go-diff/diffmatchpatch) [![Build Status](https://travis-ci.org/sergi/go-diff.svg?branch=master)](https://travis-ci.org/sergi/go-diff) [![Coverage Status](https://coveralls.io/repos/sergi/go-diff/badge.png?branch=master)](https://coveralls.io/r/sergi/go-diff?branch=master)
1+
# go-diff [![GoDoc](https://godoc.org/github.com/katbyte/sergi-go-diff?status.png)](https://godoc.org/github.com/katbyte/sergi-go-diff/diffmatchpatch) [![Build Status](https://travis-ci.org/katbyte/sergi-go-diff.svg?branch=master)](https://travis-ci.org/katbyte/sergi-go-diff) [![Coverage Status](https://coveralls.io/repos/katbyte/sergi-go-diff/badge.png?branch=master)](https://coveralls.io/r/katbyte/sergi-go-diff?branch=master)
22

33
go-diff offers algorithms to perform operations required for synchronizing plain text:
44

@@ -9,7 +9,7 @@ go-diff offers algorithms to perform operations required for synchronizing plain
99
## Installation
1010

1111
```bash
12-
go get -u github.com/sergi/go-diff/...
12+
go get -u github.com/katbyte/sergi-go-diff/...
1313
```
1414

1515
## Usage
@@ -22,7 +22,7 @@ package main
2222
import (
2323
"fmt"
2424

25-
"github.com/sergi/go-diff/diffmatchpatch"
25+
"github.com/katbyte/sergi-go-diff/diffmatchpatch"
2626
)
2727

2828
const (
@@ -41,11 +41,11 @@ func main() {
4141

4242
## Found a bug or are you missing a feature in go-diff?
4343

44-
Please make sure to have the latest version of go-diff. If the problem still persists go through the [open issues](https://github.com/sergi/go-diff/issues) in the tracker first. If you cannot find your request just open up a [new issue](https://github.com/sergi/go-diff/issues/new).
44+
Please make sure to have the latest version of go-diff. If the problem still persists go through the [open issues](https://github.com/katbyte/sergi-go-diff/issues) in the tracker first. If you cannot find your request just open up a [new issue](https://github.com/katbyte/sergi-go-diff/issues/new).
4545

4646
## How to contribute?
4747

48-
You want to contribute to go-diff? GREAT! If you are here because of a bug you want to fix or a feature you want to add, you can just read on. Otherwise we have a list of [open issues in the tracker](https://github.com/sergi/go-diff/issues). Just choose something you think you can work on and discuss your plans in the issue by commenting on it.
48+
You want to contribute to go-diff? GREAT! If you are here because of a bug you want to fix or a feature you want to add, you can just read on. Otherwise we have a list of [open issues in the tracker](https://github.com/katbyte/sergi-go-diff/issues). Just choose something you think you can work on and discuss your plans in the issue by commenting on it.
4949

5050
Please make sure that every behavioral change is accompanied by test cases. Additionally, every contribution must pass the `lint` and `test` Makefile targets which can be run using the following commands in the repository root directory.
5151

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/sergi/go-diff
1+
module github.com/katbyte/sergi-go-diff
22

33
require (
44
github.com/davecgh/go-spew v1.1.1 // indirect
@@ -8,4 +8,4 @@ require (
88
gopkg.in/yaml.v2 v2.2.4 // indirect
99
)
1010

11-
go 1.12
11+
go 1.18

0 commit comments

Comments
 (0)