Skip to content

Commit 625319c

Browse files
committed
feat: cleanup the project
1 parent c96b3f0 commit 625319c

24 files changed

Lines changed: 40 additions & 71 deletions

.goreleaser.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,4 @@ changelog:
4040
exclude:
4141
- '^docs:'
4242
- '^test:'
43-
brews:
44-
- name: goenv
45-
homepage: 'https://github.com/Norwik/homebrew-tools'
46-
tap:
47-
owner: Norwik
48-
name: homebrew-tools
49-
token: "{{ .Env.TAP_GITHUB_TOKEN }}"
50-
commit_author:
51-
name: todd-the-bot
52-
email: support@clivern.com
5343
project_name: goenv

README.md

Lines changed: 17 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
<p align="center">
2-
<img alt="Goenv Logo" src="/static/logo.png?v=1.16.0" width="200" />
2+
<img alt="Goenv Logo" src="/static/logo.png?v=1.17.0" width="200" />
33
<h3 align="center">Goenv</h3>
44
<p align="center">Manage Your Applications Go Environment</p>
55
<p align="center">
6-
<a href="https://github.com/norwik/Goenv/actions/workflows/build.yml">
7-
<img src="https://github.com/norwik/Goenv/actions/workflows/build.yml/badge.svg">
6+
<a href="https://github.com/clivern/Goenv/actions/workflows/build.yml">
7+
<img src="https://github.com/clivern/Goenv/actions/workflows/build.yml/badge.svg">
88
</a>
9-
<a href="https://github.com/norwik/Goenv/releases">
10-
<img src="https://img.shields.io/badge/Version-v1.16.0-red.svg">
9+
<a href="https://github.com/clivern/Goenv/releases">
10+
<img src="https://img.shields.io/badge/Version-v1.17.0-red.svg">
1111
</a>
12-
<a href="https://goreportcard.com/report/github.com/norwik/Goenv">
13-
<img src="https://goreportcard.com/badge/github.com/norwik/Goenv?v=1.16.0">
12+
<a href="https://goreportcard.com/report/github.com/clivern/Goenv">
13+
<img src="https://goreportcard.com/badge/github.com/clivern/Goenv?v=1.17.0">
1414
</a>
15-
<a href="https://godoc.org/github.com/norwik/goenv">
16-
<img src="https://godoc.org/github.com/norwik/goenv?status.svg">
15+
<a href="https://godoc.org/github.com/clivern/goenv">
16+
<img src="https://godoc.org/github.com/clivern/goenv?status.svg">
1717
</a>
18-
<a href="https://github.com/norwik/Goenv/blob/main/LICENSE">
18+
<a href="https://github.com/clivern/Goenv/blob/main/LICENSE">
1919
<img src="https://img.shields.io/badge/LICENSE-MIT-orange.svg">
2020
</a>
2121
</p>
@@ -32,23 +32,16 @@ Goenv helps you to work with multiple `golang` versions at the same time whether
3232

3333
## Usage
3434

35-
Download [the latest `goenv` binary](https://github.com/norwik/Goenv/releases). Make it executable from everywhere.
35+
Download [the latest `goenv` binary](https://github.com/clivern/Goenv/releases). Make it executable from everywhere.
3636

3737
```zsh
38-
$ export GOENV_LATEST_VERSION=$(curl --silent "https://api.github.com/repos/norwik/Goenv/releases/latest" | jq '.tag_name' | sed -E 's/.*"([^"]+)".*/\1/' | tr -d v)
38+
$ export GOENV_LATEST_VERSION=$(curl --silent "https://api.github.com/repos/clivern/Goenv/releases/latest" | jq '.tag_name' | sed -E 's/.*"([^"]+)".*/\1/' | tr -d v)
3939

4040
# For Linux
41-
$ curl -sL https://github.com/norwik/Goenv/releases/download/v{$GOENV_LATEST_VERSION}/goenv_Linux_x86_64.tar.gz | tar xz
41+
$ curl -sL https://github.com/clivern/Goenv/releases/download/v{$GOENV_LATEST_VERSION}/goenv_Linux_x86_64.tar.gz | tar xz
4242

4343
# For Mac
44-
$ curl -sL https://github.com/norwik/Goenv/releases/download/v{$GOENV_LATEST_VERSION}/goenv_Darwin_x86_64.tar.gz | tar xz
45-
```
46-
47-
Or install with homebrew
48-
49-
```zsh
50-
$ brew tap norwik/tools
51-
$ brew install norwik/tools/goenv
44+
$ curl -sL https://github.com/clivern/Goenv/releases/download/v{$GOENV_LATEST_VERSION}/goenv_Darwin_x86_64.tar.gz | tar xz
5245
```
5346

5447
Configure the goenv using the following command
@@ -106,7 +99,7 @@ $ goenv --help
10699
🐺 Manage Your Applications Go Environment.
107100

108101
If you have any suggestions, bug reports, or annoyances please report
109-
them to our issue tracker at <https://github.com/norwik/goenv/issues>
102+
them to our issue tracker at <https://github.com/clivern/goenv/issues>
110103

111104
Usage:
112105
goenv [command]
@@ -177,12 +170,12 @@ When you execute a shim, `goenv` determines which Go version to use by reading i
177170

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

180-
See the [Releases section of our GitHub project](https://github.com/norwik/goenv/releases) for changelogs for each release version of Goenv. It contains summaries of the most noteworthy changes made in each release. Also see the [Milestones section](https://github.com/norwik/goenv/milestones) for the future roadmap.
173+
See the [Releases section of our GitHub project](https://github.com/clivern/goenv/releases) for changelogs for each release version of Goenv. It contains summaries of the most noteworthy changes made in each release. Also see the [Milestones section](https://github.com/clivern/goenv/milestones) for the future roadmap.
181174

182175

183176
## Bug tracker
184177

185-
If you have any suggestions, bug reports, or annoyances please report them to our issue tracker at https://github.com/norwik/goenv/issues
178+
If you have any suggestions, bug reports, or annoyances please report them to our issue tracker at https://github.com/clivern/goenv/issues
186179

187180

188181
## Security Issues

bin/release

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/norwik/goenv/releases/latest" | jq '.tag_name' | sed -E 's/.*"([^"]+)".*/\1/')
4+
export LATEST_VERSION=$(curl --silent "https://api.github.com/repos/clivern/goenv/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/norwik/goenv@{$LATEST_VERSION}
7+
curl --silent https://sum.golang.org/lookup/github.com/clivern/goenv@{$LATEST_VERSION}

cmd/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"fmt"
1010
"os"
1111

12-
"github.com/norwik/goenv/core/module"
12+
"github.com/clivern/goenv/core/module"
1313

1414
"github.com/spf13/cobra"
1515
)

cmd/exec.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"fmt"
99
"os"
1010

11-
"github.com/norwik/goenv/core/module"
11+
"github.com/clivern/goenv/core/module"
1212

1313
"github.com/spf13/cobra"
1414
)

cmd/global.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"fmt"
99
"os"
1010

11-
"github.com/norwik/goenv/core/module"
11+
"github.com/clivern/goenv/core/module"
1212

1313
"github.com/spf13/cobra"
1414
)

cmd/init.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package cmd
77
import (
88
"fmt"
99

10-
"github.com/norwik/goenv/core/module"
10+
"github.com/clivern/goenv/core/module"
1111

1212
"github.com/spf13/cobra"
1313
)

cmd/install.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"fmt"
99
"os"
1010

11-
"github.com/norwik/goenv/core/module"
11+
"github.com/clivern/goenv/core/module"
1212

1313
"github.com/spf13/cobra"
1414
)

cmd/local.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"fmt"
99
"os"
1010

11-
"github.com/norwik/goenv/core/module"
11+
"github.com/clivern/goenv/core/module"
1212

1313
"github.com/spf13/cobra"
1414
)

cmd/rehash.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"fmt"
99
"os"
1010

11-
"github.com/norwik/goenv/core/module"
11+
"github.com/clivern/goenv/core/module"
1212

1313
"github.com/spf13/cobra"
1414
)

0 commit comments

Comments
 (0)