Skip to content

Commit

Permalink
refactor: updates org reference.
Browse files Browse the repository at this point in the history
  • Loading branch information
outofcoffee committed May 19, 2023
1 parent 4ee25f1 commit a0696e1
Show file tree
Hide file tree
Showing 18 changed files with 43 additions and 43 deletions.
4 changes: 2 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ brews:
# GitHub/GitLab repository to push the formula to
# Gitea is not supported yet, but the support coming
tap:
owner: outofcoffee
owner: release-tools
name: homebrew-tap

# Git author used to commit to the repository.
Expand All @@ -61,7 +61,7 @@ brews:

# Your app's homepage.
# Default is empty.
homepage: "https://github.com/outofcoffee/since"
homepage: "https://github.com/release-tools/since"

# Template of your app's description.
# Default is empty.
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# since
[![CI](https://github.com/outofcoffee/since/actions/workflows/ci.yaml/badge.svg)](https://github.com/outofcoffee/since/actions/workflows/ci.yaml)
[![Go Report Card](https://goreportcard.com/badge/github.com/outofcoffee/since)](https://goreportcard.com/report/github.com/outofcoffee/since)
[![Go Reference](https://pkg.go.dev/badge/github.com/outofcoffee/since.svg)](https://pkg.go.dev/github.com/outofcoffee/since)
![License](https://img.shields.io/github/license/outofcoffee/since)
[![CI](https://github.com/release-tools/since/actions/workflows/ci.yaml/badge.svg)](https://github.com/release-tools/since/actions/workflows/ci.yaml)
[![Go Report Card](https://goreportcard.com/badge/github.com/release-tools/since)](https://goreportcard.com/report/github.com/release-tools/since)
[![Go Reference](https://pkg.go.dev/badge/github.com/release-tools/since.svg)](https://pkg.go.dev/github.com/release-tools/since)
![License](https://img.shields.io/github/license/release-tools/since)

- Parse git history and generate changelog.
- Calculate the next version based on [semver](http://semver.org) and [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/).
Expand All @@ -13,13 +13,13 @@
### Homebrew

```bash
brew install outofcoffee/tap/since
brew install release-tools/tap/since
```

### Go

```bash
go install github.com/outofcoffee/since
go install github.com/release-tools/since
```

## Usage
Expand Down
8 changes: 4 additions & 4 deletions changelog/changelog.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ package changelog

import (
"fmt"
"github.com/outofcoffee/since/cfg"
"github.com/outofcoffee/since/convcommits"
"github.com/outofcoffee/since/semver"
"github.com/outofcoffee/since/vcs"
"github.com/release-tools/since/cfg"
"github.com/release-tools/since/convcommits"
"github.com/release-tools/since/semver"
"github.com/release-tools/since/vcs"
"github.com/sirupsen/logrus"
"golang.org/x/exp/maps"
"sort"
Expand Down
2 changes: 1 addition & 1 deletion cmd/changelog_extract.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package cmd

import (
"fmt"
"github.com/outofcoffee/since/changelog"
"github.com/release-tools/since/changelog"
"github.com/spf13/cobra"
"os"
)
Expand Down
6 changes: 3 additions & 3 deletions cmd/changelog_generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ package cmd

import (
"fmt"
"github.com/outofcoffee/since/cfg"
"github.com/outofcoffee/since/changelog"
"github.com/outofcoffee/since/vcs"
"github.com/release-tools/since/cfg"
"github.com/release-tools/since/changelog"
"github.com/release-tools/since/vcs"
"github.com/spf13/cobra"
)

Expand Down
6 changes: 3 additions & 3 deletions cmd/changelog_update.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ package cmd

import (
"fmt"
"github.com/outofcoffee/since/cfg"
"github.com/outofcoffee/since/changelog"
"github.com/outofcoffee/since/vcs"
"github.com/release-tools/since/cfg"
"github.com/release-tools/since/changelog"
"github.com/release-tools/since/vcs"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ limitations under the License.
package cmd

import (
"github.com/outofcoffee/since/vcs"
"github.com/release-tools/since/vcs"
"github.com/spf13/cobra"
)

Expand Down
6 changes: 3 additions & 3 deletions cmd/project_changes.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ package cmd

import (
"fmt"
"github.com/outofcoffee/since/cfg"
"github.com/outofcoffee/since/changelog"
"github.com/outofcoffee/since/vcs"
"github.com/release-tools/since/cfg"
"github.com/release-tools/since/changelog"
"github.com/release-tools/since/vcs"
"github.com/spf13/cobra"
)

Expand Down
8 changes: 4 additions & 4 deletions cmd/project_release.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ package cmd

import (
"fmt"
"github.com/outofcoffee/since/cfg"
"github.com/outofcoffee/since/changelog"
"github.com/outofcoffee/since/hooks"
"github.com/outofcoffee/since/vcs"
"github.com/release-tools/since/cfg"
"github.com/release-tools/since/changelog"
"github.com/release-tools/since/hooks"
"github.com/release-tools/since/vcs"
"github.com/spf13/cobra"
)

Expand Down
6 changes: 3 additions & 3 deletions cmd/project_version.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ package cmd

import (
"fmt"
"github.com/outofcoffee/since/cfg"
"github.com/outofcoffee/since/semver"
"github.com/outofcoffee/since/vcs"
"github.com/release-tools/since/cfg"
"github.com/release-tools/since/semver"
"github.com/release-tools/since/vcs"
"github.com/spf13/cobra"
"os"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/project_version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ limitations under the License.
package cmd

import (
"github.com/outofcoffee/since/semver"
"github.com/release-tools/since/semver"
"testing"
)

Expand Down
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/outofcoffee/since
module github.com/release-tools/since

go 1.20

Expand Down
4 changes: 2 additions & 2 deletions hooks/hooks.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ package hooks

import (
"fmt"
"github.com/outofcoffee/since/cfg"
"github.com/outofcoffee/since/vcs"
"github.com/release-tools/since/cfg"
"github.com/release-tools/since/vcs"
"github.com/sirupsen/logrus"
"os"
"os/exec"
Expand Down
4 changes: 2 additions & 2 deletions hooks/hooks_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ limitations under the License.
package hooks

import (
"github.com/outofcoffee/since/cfg"
"github.com/outofcoffee/since/vcs"
"github.com/release-tools/since/cfg"
"github.com/release-tools/since/vcs"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ limitations under the License.

package main

import "github.com/outofcoffee/since/cmd"
import "github.com/release-tools/since/cmd"

func main() {
cmd.Execute()
Expand Down
6 changes: 3 additions & 3 deletions semver/versions.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ limitations under the License.
package semver

import (
"github.com/outofcoffee/since/convcommits"
"github.com/outofcoffee/since/stringutil"
"github.com/outofcoffee/since/vcs"
"github.com/release-tools/since/convcommits"
"github.com/release-tools/since/stringutil"
"github.com/release-tools/since/vcs"
"github.com/sirupsen/logrus"
"strconv"
"strings"
Expand Down
4 changes: 2 additions & 2 deletions vcs/commits.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import (
"github.com/go-git/go-git/v5"
"github.com/go-git/go-git/v5/plumbing/object"
"github.com/go-git/go-git/v5/plumbing/storer"
"github.com/outofcoffee/since/cfg"
"github.com/outofcoffee/since/stringutil"
"github.com/release-tools/since/cfg"
"github.com/release-tools/since/stringutil"
"github.com/sirupsen/logrus"
"regexp"
"strings"
Expand Down
2 changes: 1 addition & 1 deletion vcs/operations.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"github.com/go-git/go-git/v5"
"github.com/go-git/go-git/v5/plumbing"
"github.com/go-git/go-git/v5/plumbing/object"
"github.com/outofcoffee/since/cfg"
"github.com/release-tools/since/cfg"
"github.com/rogpeppe/go-internal/semver"
"github.com/sirupsen/logrus"
"strings"
Expand Down

0 comments on commit a0696e1

Please sign in to comment.