Skip to content

Commit 517378f

Browse files
committed
fixes
1 parent 09f6cfc commit 517378f

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
<p align="center">
2-
<img src="https://raw.githubusercontent.com/Clevenio/Garment/main/assets/logo.png?v=1.0.3" width="200" />
2+
<img src="https://raw.githubusercontent.com/Norwik/Garment/main/assets/logo.png?v=1.0.4" width="200" />
33
<h3 align="center">Garment</h3>
44
<p align="center">A Thread Safe Connection Pooling.</p>
55
<p align="center">
6-
<a href="https://github.com/Clevenio/Garment/actions/workflows/build.yml">
7-
<img src="https://github.com/Clevenio/Garment/actions/workflows/build.yml/badge.svg">
6+
<a href="https://github.com/Norwik/Garment/actions/workflows/build.yml">
7+
<img src="https://github.com/Norwik/Garment/actions/workflows/build.yml/badge.svg">
88
</a>
9-
<a href="https://github.com/clevenio/garment/releases">
10-
<img src="https://img.shields.io/badge/Version-1.0.3-cyan.svg">
9+
<a href="https://github.com/norwik/garment/releases">
10+
<img src="https://img.shields.io/badge/Version-1.0.4-cyan.svg">
1111
</a>
12-
<a href="https://goreportcard.com/report/github.com/clevenio/garment">
13-
<img src="https://goreportcard.com/badge/github.com/clevenio/garment?v=1.0.3">
12+
<a href="https://goreportcard.com/report/github.com/norwik/garment">
13+
<img src="https://goreportcard.com/badge/github.com/norwik/garment?v=1.0.4">
1414
</a>
15-
<a href="https://godoc.org/github.com/clevenio/garment">
16-
<img src="https://godoc.org/github.com/clevenio/garment?status.svg">
15+
<a href="https://godoc.org/github.com/norwik/garment">
16+
<img src="https://godoc.org/github.com/norwik/garment?status.svg">
1717
</a>
18-
<a href="https://github.com/clevenio/garment/blob/master/LICENSE">
18+
<a href="https://github.com/norwik/garment/blob/master/LICENSE">
1919
<img src="https://img.shields.io/badge/LICENSE-MIT-orange.svg">
2020
</a>
2121
</p>
@@ -31,7 +31,7 @@ Garment retains a single connection pool for different database types used insid
3131
Install the package with:
3232

3333
```zsh
34-
$ go get github.com/clevenio/garment
34+
$ go get github.com/norwik/garment
3535
```
3636

3737
Here is an example:
@@ -43,7 +43,7 @@ import (
4343
"errors"
4444
"fmt"
4545

46-
"github.com/clevenio/garment"
46+
"github.com/norwik/garment"
4747
)
4848

4949
type Database struct {
@@ -128,12 +128,12 @@ func main() {
128128

129129
For transparency into our release cycle and in striving to maintain backward compatibility, Garment is maintained under the [Semantic Versioning guidelines](https://semver.org/) and release process is predictable and business-friendly.
130130

131-
See the [Releases section of our GitHub project](https://github.com/clevenio/garment/releases) for changelogs for each release version of Garment. It contains summaries of the most noteworthy changes made in each release.
131+
See the [Releases section of our GitHub project](https://github.com/norwik/garment/releases) for changelogs for each release version of Garment. It contains summaries of the most noteworthy changes made in each release.
132132

133133

134134
## Bug tracker
135135

136-
If you have any suggestions, bug reports, or annoyances please report them to our issue tracker at https://github.com/clevenio/garment/issues
136+
If you have any suggestions, bug reports, or annoyances please report them to our issue tracker at https://github.com/norwik/garment/issues
137137

138138

139139
## Security Issues
@@ -148,6 +148,6 @@ We are an open source, community-driven project so please feel free to join us.
148148

149149
## License
150150

151-
© 2021, Cleven. Released under [MIT License](https://opensource.org/licenses/mit-license.php).
151+
© 2021, Clivern. Released under [MIT License](https://opensource.org/licenses/mit-license.php).
152152

153-
**Garment** is authored and maintained by [@Cleven](http://github.com/clevenio).
153+
**Garment** is authored and maintained by [@Clivern](http://github.com/Clivern).

bin/release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# Fetch latest version
4-
export LATEST_VERSION=$(curl --silent "https://api.github.com/repos/clevenio/garment/releases/latest" | jq '.tag_name' | sed -E 's/.*"([^"]+)".*/\1/')
4+
export LATEST_VERSION=$(curl --silent "https://api.github.com/repos/norwik/garment/releases/latest" | jq '.tag_name' | sed -E 's/.*"([^"]+)".*/\1/')
55

66
# Update go checksum database (sum.golang.org) immediately after release
7-
curl --silent https://sum.golang.org/lookup/github.com/clevenio/garment@{$LATEST_VERSION}
7+
curl --silent https://sum.golang.org/lookup/github.com/norwik/garment@{$LATEST_VERSION}

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/clevenio/garment
1+
module github.com/norwik/garment
22

33
go 1.19
44

0 commit comments

Comments
 (0)