Skip to content

Commit eb58bee

Browse files
authored
Migrate repo (#3)
* migrate repo * remove travis
1 parent c7ffd14 commit eb58bee

19 files changed

+25
-32
lines changed

.travis.yml

Lines changed: 0 additions & 7 deletions
This file was deleted.

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# changeset
22

3-
[![GoDoc](https://godoc.org/github.com/Fs02/changeset?status.svg)](https://godoc.org/github.com/Fs02/changeset)
4-
[![Build Status](https://travis-ci.org/Fs02/changeset.svg?branch=master)](https://travis-ci.org/Fs02/changeset)
5-
[![Go Report Card](https://goreportcard.com/badge/github.com/Fs02/changeset)](https://goreportcard.com/report/github.com/Fs02/changeset)
6-
[![Gocover](https://gocover.io/_badge/github.com/Fs02/changeset)](https://gocover.io/github.com/Fs02/changeset)
3+
[![GoDoc](https://godoc.org/github.com/go-rel/changeset?status.svg)](https://godoc.org/github.com/go-rel/changeset)
4+
[![Build Status](https://travis-ci.org/go-rel/changeset.svg?branch=master)](https://travis-ci.org/go-rel/changeset)
5+
[![Go Report Card](https://goreportcard.com/badge/github.com/go-rel/changeset)](https://goreportcard.com/report/github.com/go-rel/changeset)
6+
[![Gocover](https://gocover.io/_badge/github.com/go-rel/changeset)](https://gocover.io/github.com/go-rel/changeset)
77

88
Changeset mutator for [REL](https://github.com/Fs02/rel). Changesets allow filtering, casting, validation and definition of constraints when manipulating structs.
99

1010
## Install
1111

1212
```bash
13-
go get github.com/Fs02/changeset
13+
go get github.com/go-rel/changeset
1414
```
1515

1616
## Example
@@ -23,8 +23,8 @@ import (
2323

2424
"github.com/Fs02/rel"
2525
"github.com/Fs02/rel/adapter/mysql"
26-
"github.com/Fs02/changeset"
27-
"github.com/Fs02/changeset/params"
26+
"github.com/go-rel/changeset"
27+
"github.com/go-rel/changeset/params"
2828
)
2929

3030
type Product struct {
@@ -80,4 +80,4 @@ func main() {
8080

8181
## License
8282

83-
Released under the [MIT License](https://github.com/Fs02/changeset/blob/master/LICENSE)
83+
Released under the [MIT License](https://github.com/go-rel/changeset/blob/master/LICENSE)

apply_string_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"strings"
55
"testing"
66

7-
"github.com/Fs02/changeset/params"
7+
"github.com/go-rel/changeset/params"
88
"github.com/stretchr/testify/assert"
99
)
1010

cast.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"reflect"
66
"strings"
77

8-
"github.com/Fs02/changeset/params"
8+
"github.com/go-rel/changeset/params"
99
)
1010

1111
// CastErrorMessage is the default error message for Cast.

cast_assoc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"strconv"
66
"strings"
77

8-
"github.com/Fs02/changeset/params"
8+
"github.com/go-rel/changeset/params"
99
)
1010

1111
// CastAssocErrorMessage is the default error message for CastAssoc when its invalid.

cast_assoc_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"reflect"
55
"testing"
66

7-
"github.com/Fs02/changeset/params"
7+
"github.com/go-rel/changeset/params"
88
"github.com/stretchr/testify/assert"
99
)
1010

cast_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"reflect"
66
"testing"
77

8-
"github.com/Fs02/changeset/params"
8+
"github.com/go-rel/changeset/params"
99
"github.com/stretchr/testify/assert"
1010
)
1111

changeset.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"reflect"
77
"time"
88

9-
"github.com/Fs02/changeset/params"
109
"github.com/Fs02/rel"
10+
"github.com/go-rel/changeset/params"
1111
)
1212

1313
// Changeset used to cast and validate data before saving it to the database.

changeset_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"testing"
55
"time"
66

7-
"github.com/Fs02/changeset/params"
87
"github.com/Fs02/rel"
8+
"github.com/go-rel/changeset/params"
99
"github.com/stretchr/testify/assert"
1010
)
1111

escape_string_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package changeset
33
import (
44
"testing"
55

6-
"github.com/Fs02/changeset/params"
6+
"github.com/go-rel/changeset/params"
77
"github.com/stretchr/testify/assert"
88
)
99

0 commit comments

Comments
 (0)