Skip to content

Commit 4e9c4ca

Browse files
authored
Migrate git repository (#117)
* Migrate repo * replace url * force run website * uncomment * update cc test reporter id * bump dependency
1 parent b893140 commit 4e9c4ca

File tree

102 files changed

+189
-189
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+189
-189
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
uses: actions/checkout@v2
120120
- uses: amancevice/setup-code-climate@v0
121121
with:
122-
cc_test_reporter_id: 045e6c8f64f873901bacc868224b418d9fc72dd73c40feb1af50faf3e96de15d
122+
cc_test_reporter_id: 83e67f07a2ebbb28902b9e701a8b6204ed5aa768baf9a08bce758088dfc8e433
123123
- name: Set ENV for codeclimate (pull_request)
124124
run: |
125125
git fetch --no-tags --prune --depth=1 origin +refs/heads/$GITHUB_HEAD_REF:refs/remotes/origin/$GITHUB_HEAD_REF
@@ -136,4 +136,4 @@ jobs:
136136
MYSQL_DATABASE: rel:rel@(127.0.0.1:3306)/rel_test
137137
POSTGRESQL_DATABASE: postgres://rel:rel@localhost/rel_test
138138
run: go test -race -tags=all -coverprofile=c.out ./...
139-
- run: cc-test-reporter after-build -p github.com/Fs02/rel
139+
- run: cc-test-reporter after-build -p github.com/go-rel/rel

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
goreleaser:
1010
runs-on: ubuntu-latest
11-
if: github.repository == ‘Fs02/rel’
11+
if: github.repository == ‘go-rel/rel’
1212
steps:
1313
- name: Checkout
1414
uses: actions/checkout@v2

.github/workflows/website.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Publish website
1+
name: Website
22
on:
33
push:
44
branches:
@@ -8,7 +8,7 @@ jobs:
88
deploy:
99
name: Deploy
1010
runs-on: ubuntu-latest
11-
if: github.repository == 'Fs02/rel'
11+
if: github.repository == 'go-rel/rel'
1212
steps:
1313
- name: Checkout rel
1414
uses: actions/checkout@v2

.goreleaser.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ changelog:
3737
- '^test:'
3838
nfpms:
3939
- file_name_template: '{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
40-
homepage: https://fs02.github.io/rel
40+
homepage: https://go-rel.github.io
4141
description: Modern Database Access Layer for Golang
4242
maintainer: Muhammad Surya Asriadie <[email protected]>
4343
license: MIT
44-
vendor: Fs02
44+
vendor: REL
4545
formats:
4646
- apk
4747
- deb

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ I'm really glad you're reading this, because we need volunteer developers to hel
55
Here's some way you on how you can contribute to this project:
66

77
- Report any bug, feature request and questions using issues.
8-
- Contribute directly to the development, don't hestitate to take any task available on [projects](https://github.com/Fs02/rel/projects) page. You can use issues if you need further discussion and help about the implementation.
8+
- Contribute directly to the development, don't hestitate to take any task available on [projects](https://github.com/go-rel/rel/projects) page. You can use issues if you need further discussion and help about the implementation.
99
- Improvement to the documentation is always welcomed.
1010
- Star and let the world know about this project.
1111

README.md

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

3-
[![GoDoc](https://godoc.org/github.com/Fs02/rel?status.svg)](https://godoc.org/github.com/Fs02/rel)
4-
[![Build Status](https://github.com/Fs02/rel/workflows/Build/badge.svg)](https://github.com/Fs02/rel/actions)
5-
[![Go Report Card](https://goreportcard.com/badge/github.com/Fs02/rel)](https://goreportcard.com/report/github.com/Fs02/rel)
6-
[![Maintainability](https://api.codeclimate.com/v1/badges/194611cc82f02edcda6e/maintainability)](https://codeclimate.com/github/Fs02/rel/maintainability)
7-
[![Test Coverage](https://api.codeclimate.com/v1/badges/194611cc82f02edcda6e/test_coverage)](https://codeclimate.com/github/Fs02/rel/test_coverage)
3+
[![GoDoc](https://godoc.org/github.com/go-rel/rel?status.svg)](https://godoc.org/github.com/go-rel/rel)
4+
[![Build Status](https://github.com/go-rel/rel/workflows/Build/badge.svg)](https://github.com/go-rel/rel/actions)
5+
[![Go Report Card](https://goreportcard.com/badge/github.com/go-rel/rel)](https://goreportcard.com/report/github.com/go-rel/rel)
6+
[![Maintainability](https://api.codeclimate.com/v1/badges/194611cc82f02edcda6e/maintainability)](https://codeclimate.com/github/go-rel/rel/maintainability)
7+
[![Test Coverage](https://api.codeclimate.com/v1/badges/194611cc82f02edcda6e/test_coverage)](https://codeclimate.com/github/go-rel/rel/test_coverage)
88

99
> Modern Database Access Layer for Golang.
1010
@@ -25,17 +25,17 @@ REL is golang orm-ish database layer for layered architecture. It's testable and
2525
## Install
2626

2727
```bash
28-
go get github.com/Fs02/rel
28+
go get github.com/go-rel/rel
2929
```
3030

3131
## Getting Started
3232

33-
- Guides [https://fs02.github.io/rel](https://fs02.github.io/rel)
33+
- Guides [https://go-rel.github.io](https://go-rel.github.io)
3434

3535
## Examples
3636

3737
- [go-todo-backend](https://github.com/Fs02/go-todo-backend) - Todo Backend
3838

3939
## License
4040

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

adapter/mysql/mysql.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ import (
1616
db "database/sql"
1717
"strings"
1818

19-
"github.com/Fs02/rel"
20-
"github.com/Fs02/rel/adapter/sql"
19+
"github.com/go-rel/rel"
20+
"github.com/go-rel/rel/adapter/sql"
2121
)
2222

2323
// Adapter definition for mysql database.

adapter/mysql/mysql_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"os"
99
"testing"
1010

11-
"github.com/Fs02/rel"
12-
"github.com/Fs02/rel/adapter/specs"
11+
"github.com/go-rel/rel"
12+
"github.com/go-rel/rel/adapter/specs"
1313
_ "github.com/go-sql-driver/mysql"
1414
"github.com/stretchr/testify/assert"
1515
)

adapter/postgres/postgres.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ import (
1717
db "database/sql"
1818
"time"
1919

20-
"github.com/Fs02/rel"
21-
"github.com/Fs02/rel/adapter/sql"
20+
"github.com/go-rel/rel"
21+
"github.com/go-rel/rel/adapter/sql"
2222
)
2323

2424
// Adapter definition for postgres database.

adapter/postgres/postgres_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"testing"
99
"time"
1010

11-
"github.com/Fs02/rel"
12-
"github.com/Fs02/rel/adapter/specs"
11+
"github.com/go-rel/rel"
12+
"github.com/go-rel/rel/adapter/specs"
1313
_ "github.com/lib/pq"
1414
"github.com/stretchr/testify/assert"
1515
)

0 commit comments

Comments
 (0)