-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from version-cli/migrate-org
chore: Migrate org
- Loading branch information
Showing
7 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,12 +23,12 @@ COPY --from=builder /src/version /bin/version | |
|
||
ARG CREATED | ||
ARG AUTHORS="Koen van Zuijlen <[email protected]>" | ||
ARG URL="https://github.com/kvanzuijlen/version" | ||
ARG DOCUMENTATION="https://github.com/kvanzuijlen/version" | ||
ARG SOURCE="https://github.com/kvanzuijlen/version" | ||
ARG URL="https://github.com/version-cli/version" | ||
ARG DOCUMENTATION="https://github.com/version-cli/version" | ||
ARG SOURCE="https://github.com/version-cli/version" | ||
ARG VERSION | ||
ARG REVISION | ||
ARG VENDOR="kvanzuijlen" | ||
ARG VENDOR="version-cli" | ||
ARG LICENSES="GNU GPLv3" | ||
ARG TITLE="version" | ||
ARG DESCRIPTION="A simple CLI tool to deal with version numbers." | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
module github.com/kvanzuijlen/version | ||
module github.com/version-cli/version | ||
|
||
go 1.21 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ Copyright © 2024 Koen van Zuijlen <[email protected] | |
package main | ||
|
||
import ( | ||
"github.com/kvanzuijlen/version/cmd" | ||
"github.com/version-cli/version/cmd" | ||
"os" | ||
|
||
"go.uber.org/zap" | ||
|