From 81f00e402bf0613503f32814908500d390867f52 Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 25 Aug 2022 13:44:06 +0200 Subject: [PATCH] Migration: From github.com to git.webz.asia --- README.md | 14 +++++++------- go.mod | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index ff6c03a..438ccbb 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -[![Release](https://img.shields.io/github/release/version-go/ldflags.svg?style=flat-square)](https://github.com/version-go/ldflags/releases) +[![Release](https://img.shields.io/github/release/version-go/ldflags.svg?style=flat-square)](https://git.webz.asia/version-go/ldflags/releases) ![GitHub](https://img.shields.io/github/license/version-go/ldflags?style=flat-square) [![Maintainability](https://api.codeclimate.com/v1/badges/4adb592e28b03dd219b8/maintainability)](https://codeclimate.com/github/version-go/ldflags/maintainability) -[![Go Report Card](https://goreportcard.com/badge/github.com/version-go/ldflags)](https://goreportcard.com/report/github.com/version-go/ldflags) -[![GoDoc](https://godoc.org/github.com/version-go/ldflags?status.svg)](https://godoc.org/github.com/version-go/ldflags) -[![GoDoc](https://pkg.go.dev/badge/github.com/version-go/ldflags?status.svg)](https://pkg.go.dev/github.com/version-go/ldflags?tab=doc) +[![Go Report Card](https://goreportcard.com/badge/git.webz.asia/version-go/ldflags)](https://goreportcard.com/report/git.webz.asia/version-go/ldflags) +[![GoDoc](https://godoc.org/git.webz.asia/version-go/ldflags?status.svg)](https://godoc.org/git.webz.asia/version-go/ldflags) +[![GoDoc](https://pkg.go.dev/badge/git.webz.asia/version-go/ldflags?status.svg)](https://pkg.go.dev/git.webz.asia/version-go/ldflags?tab=doc) [![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fversion-go%2Fldflags.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fversion-go%2Fldflags?ref=badge_shield) [![time tracker](https://wakatime.com/badge/github/version-go/ldflags.svg)](https://wakatime.com/badge/github/version-go/ldflags) # ldflags package @@ -14,17 +14,17 @@ Package to store on-build extra information: version(tag), build hash, build tim ## Usage Add this package as dependency to YOUR package: ```bash -go get github.com/version-go/ldflags +go get git.webz.asia/version-go/ldflags ``` Then on build of YOUR package just add extra: ```bash -go build -ldflags "-X 'github.com/version-go/ldflags.buildVersion=0.1.0' -X 'github.com/version-go/ldflags.buildHash=9e7637c' -X 'github.com/version-go/ldflags.buildTime=Sun Oct 4 20:57:29 CEST 2020'" . +go build -ldflags "-X 'git.webz.asia/version-go/ldflags.buildVersion=0.1.0' -X 'git.webz.asia/version-go/ldflags.buildHash=9e7637c' -X 'git.webz.asia/version-go/ldflags.buildTime=Sun Oct 4 20:57:29 CEST 2020'" . ``` Or do it automatically based on existing git/data: ```bash -go build -ldflags "-X 'github.com/version-go/ldflags.buildVersion=$(git describe --abbrev=0 --tags)' -X 'github.com/version-go/ldflags.buildHash=$(git rev-parse --short HEAD)' -X 'github.com/version-go/ldflags.buildTime=$(date)'" . +go build -ldflags "-X 'git.webz.asia/version-go/ldflags.buildVersion=$(git describe --abbrev=0 --tags)' -X 'git.webz.asia/version-go/ldflags.buildHash=$(git rev-parse --short HEAD)' -X 'git.webz.asia/version-go/ldflags.buildTime=$(date)'" . ``` will store current latest tag, commit hash and build time. diff --git a/go.mod b/go.mod index 41c2212..0b0689c 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/version-go/ldflags +module git.webz.asia/version-go/ldflags go 1.13