Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Clivern committed Jun 12, 2023
1 parent 09f6cfc commit 517378f
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<p align="center">
<img src="https://raw.githubusercontent.com/Clevenio/Garment/main/assets/logo.png?v=1.0.3" width="200" />
<img src="https://raw.githubusercontent.com/Norwik/Garment/main/assets/logo.png?v=1.0.4" width="200" />
<h3 align="center">Garment</h3>
<p align="center">A Thread Safe Connection Pooling.</p>
<p align="center">
<a href="https://github.com/Clevenio/Garment/actions/workflows/build.yml">
<img src="https://github.com/Clevenio/Garment/actions/workflows/build.yml/badge.svg">
<a href="https://github.com/Norwik/Garment/actions/workflows/build.yml">
<img src="https://github.com/Norwik/Garment/actions/workflows/build.yml/badge.svg">
</a>
<a href="https://github.com/clevenio/garment/releases">
<img src="https://img.shields.io/badge/Version-1.0.3-cyan.svg">
<a href="https://github.com/norwik/garment/releases">
<img src="https://img.shields.io/badge/Version-1.0.4-cyan.svg">
</a>
<a href="https://goreportcard.com/report/github.com/clevenio/garment">
<img src="https://goreportcard.com/badge/github.com/clevenio/garment?v=1.0.3">
<a href="https://goreportcard.com/report/github.com/norwik/garment">
<img src="https://goreportcard.com/badge/github.com/norwik/garment?v=1.0.4">
</a>
<a href="https://godoc.org/github.com/clevenio/garment">
<img src="https://godoc.org/github.com/clevenio/garment?status.svg">
<a href="https://godoc.org/github.com/norwik/garment">
<img src="https://godoc.org/github.com/norwik/garment?status.svg">
</a>
<a href="https://github.com/clevenio/garment/blob/master/LICENSE">
<a href="https://github.com/norwik/garment/blob/master/LICENSE">
<img src="https://img.shields.io/badge/LICENSE-MIT-orange.svg">
</a>
</p>
Expand All @@ -31,7 +31,7 @@ Garment retains a single connection pool for different database types used insid
Install the package with:

```zsh
$ go get github.com/clevenio/garment
$ go get github.com/norwik/garment
```

Here is an example:
Expand All @@ -43,7 +43,7 @@ import (
"errors"
"fmt"

"github.com/clevenio/garment"
"github.com/norwik/garment"
)

type Database struct {
Expand Down Expand Up @@ -128,12 +128,12 @@ func main() {

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.

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.
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.


## Bug tracker

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


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

## License

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

**Garment** is authored and maintained by [@Cleven](http://github.com/clevenio).
**Garment** is authored and maintained by [@Clivern](http://github.com/Clivern).
4 changes: 2 additions & 2 deletions bin/release.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

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

# Update go checksum database (sum.golang.org) immediately after release
curl --silent https://sum.golang.org/lookup/github.com/clevenio/garment@{$LATEST_VERSION}
curl --silent https://sum.golang.org/lookup/github.com/norwik/garment@{$LATEST_VERSION}
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/clevenio/garment
module github.com/norwik/garment

go 1.19

Expand Down

0 comments on commit 517378f

Please sign in to comment.