Skip to content

Commit e1bf804

Browse files
authored
Merge pull request #3 from pjbgf/rename-module
Rename module to fluxcd/gitkit
2 parents cfd8a29 + c56f4e3 commit e1bf804

File tree

3 files changed

+33
-12
lines changed

3 files changed

+33
-12
lines changed

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@
22

33
Toolkit to build Git push workflows with Go
44

5-
[![Build](https://img.shields.io/travis/sosedoff/gitkit/master.svg?label=Build)](https://travis-ci.org/sosedoff/gitkit)
6-
[![GoDoc](https://godoc.org/github.com/sosedoff/gitkit?status.svg)](https://godoc.org/github.com/sosedoff/gitkit)
5+
[![tests](https://github.com/fluxcd/gitkit/workflows/tests/badge.svg)](https://github.com/fluxcd/gitkit/actions)
6+
[![report](https://goreportcard.com/badge/github.com/fluxcd/gitkit)](https://goreportcard.com/report/github.com/fluxcd/gitkit)
7+
[![license](https://img.shields.io/github/license/fluxcd/gitkit.svg)](https://github.com/fluxcd/gitkit/blob/master/LICENSE)
8+
[![GoDoc](https://godoc.org/github.com/fluxcd/gitkit?status.svg)](https://godoc.org/github.com/fluxcd/gitkit)
9+
[![release](https://img.shields.io/github/release/fluxcd/gitkit/all.svg)](https://github.com/fluxcd/gitkit/releases)
710

811
## Install
912

1013
```bash
11-
go get github.com/sosedoff/gitkit
14+
go get github.com/fluxcd/gitkit
1215
```
1316

1417
## Smart HTTP Server
@@ -19,7 +22,7 @@ package main
1922
import (
2023
"log"
2124
"net/http"
22-
"github.com/sosedoff/gitkit"
25+
"github.com/fluxcd/gitkit"
2326
)
2427

2528
func main() {
@@ -101,7 +104,7 @@ import (
101104
"log"
102105
"net/http"
103106

104-
"github.com/sosedoff/gitkit"
107+
"github.com/fluxcd/gitkit"
105108
)
106109

107110
func main() {
@@ -164,7 +167,7 @@ package main
164167

165168
import (
166169
"log"
167-
"github.com/sosedoff/gitkit"
170+
"github.com/fluxcd/gitkit"
168171
)
169172

170173
// User-defined key lookup function. You can make a call to a database or
@@ -259,7 +262,7 @@ import (
259262
"os"
260263
"fmt"
261264

262-
"github.com/sosedoff/gitkit"
265+
"github.com/fluxcd/gitkit"
263266
)
264267

265268
// HookInfo contains information about branch, before and after revisions.

go.mod

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
1-
module github.com/sosedoff/gitkit
1+
module github.com/fluxcd/gitkit
22

3-
go 1.16
3+
go 1.17
44

55
require (
6-
github.com/gofrs/uuid v4.0.0+incompatible
6+
github.com/gofrs/uuid v4.2.0+incompatible
77
github.com/onsi/gomega v1.19.0
8-
github.com/stretchr/testify v1.7.0
9-
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a
8+
github.com/stretchr/testify v1.7.1
9+
golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f
10+
)
11+
12+
require (
13+
github.com/davecgh/go-spew v1.1.1 // indirect
14+
github.com/pmezard/go-difflib v1.0.0 // indirect
15+
github.com/stretchr/objx v0.1.0 // indirect
16+
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
17+
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
18+
golang.org/x/text v0.3.7 // indirect
19+
gopkg.in/yaml.v2 v2.4.0 // indirect
20+
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
1021
)

go.sum

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4
99
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0/go.mod h1:fyg7847qk6SyHyPtNmDHnmrv/HOrqktSC+C9fM+CJOE=
1010
github.com/gofrs/uuid v4.0.0+incompatible h1:1SD/1F5pU8p29ybwgQSwpQk+mwdRrXCYuPhW6m+TnJw=
1111
github.com/gofrs/uuid v4.0.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM=
12+
github.com/gofrs/uuid v4.2.0+incompatible h1:yyYWMnhkhrKwwr8gAOcOCYxOOscHgDS9yZgBrnJfGa0=
13+
github.com/gofrs/uuid v4.2.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM=
1214
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
1315
github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8=
1416
github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA=
@@ -40,16 +42,21 @@ github.com/onsi/gomega v1.19.0 h1:4ieX6qQjPP/BfC3mpsAtIGGlxTWPeA3Inl/7DtXw1tw=
4042
github.com/onsi/gomega v1.19.0/go.mod h1:LY+I3pBVzYsTBU1AnDwOSxaYi9WoWiqgwooUqq9yPro=
4143
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
4244
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
45+
github.com/stretchr/objx v0.1.0 h1:4G4v2dO3VZwixGIRoQ5Lfboy6nUhCyYzaqnIAPPhYs4=
4346
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
4447
github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA=
4548
github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
4649
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
50+
github.com/stretchr/testify v1.7.1 h1:5TQK59W5E3v0r2duFAb7P95B6hEeOyEnHRa8MjYSMTY=
51+
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
4752
github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
4853
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
4954
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
5055
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
5156
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a h1:kr2P4QFmQr29mSLA43kwrOcgcReGTfbE9N577tCTuBc=
5257
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a/go.mod h1:P+XmwS30IXTQdn5tA2iutPOUgjI07+tq3H3K9MVA1s8=
58+
golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f h1:OeJjE6G4dgCY4PIXvIRQbE8+RX+uXZyGhUy/ksMGJoc=
59+
golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
5360
golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
5461
golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
5562
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=

0 commit comments

Comments
 (0)