CHANGELOG generator implemented in Go (Golang). Anytime, anywhere, Write your CHANGELOG.Table of Contentsgit-chglog Table of ContentsFeaturesHow it worksGetting Started Installation Homebrew (for macOS users)
URL: https://gorm.io/zh_CN/docs/write_driver.html URL: https://gorm.io/zh_CN/docs/changelog.html URL: https://gorm.io/zh_CN/docs//community.html URL: https://gorm.io/zh_CN/docs//contribute.html URL: https://gorm.io/zh_CN/docs//contribute.html#Translate-this-site 进一步解析 下...
conventional commits a commit convention I’ve decided to adopt in all my commits. git-chglog is a customizable CHANGELOG generator implemented in go based on commits log. GoGeleaser is a release automation tool for Go projects. 使用这3个工具和gsemver,它会更容易自动化您的项目。 gsemver 安装...
generally followsSemantic Versioning. However, the API client inprometheus/client_golang/api/…is still considered experimental. Breaking changes of the API client willnottrigger a new major release. The same is true for selected other new features explicitly marked asEXPERIMENTALin CHANGELOG.md. ...
CHANGELOG.md add change log 4年前 LICENSE Initial commit 4年前 README.en.md Initial commit 4年前 README.md change package name 4年前 go.mod change package name 4年前 go.sum initialize zk-distribution-lock 4年前 lock.go initialize zk-distribution-lock 4年前...
CHANGELOG.md docs: fix case error of X-Real-IP (#4185) 3个月前 CODE_OF_CONDUCT.md docs(conduct): add code of conduct 8年前 CONTRIBUTING.md ci: add github action workflows (#2596) 4年前 LICENSE Add MIT license 11年前 Makefile ...
packagemainimport("fmt""strings""github.com/yanyiwu/gojieba")funcmain() {varsstringvarwords[]stringuse_hmm:=truex:=gojieba.NewJieba()deferx.Free()s="我来到北京清华大学"words=x.CutAll(s)fmt.Println(s)fmt.Println("全模式:",strings.Join(words,"/"))words=x.Cut(s,use_hmm)fmt.Println(...
go.mod 支持(参见CHANGELOG) 没有外部依赖- 简单的 ol' Go stdlib + net/http项目地址:https://...
changelog: sort: asc filters: exclude: - '^docs:' - '^test:' 4. 修改配置 默认配置文件需要稍作修改以满足我们的需求 我们的demo项目没有使用vgo,需要把 - go mod tidy 注释掉 也没有使用go generate,需要把 - go generate ./... 注释掉 ...
因为这个ctx是WithContext方法返回的一个带取消的ctx,我们把这个ctx当作父context传入WriteChangeLog方法中了,如果errGroup取消了,也会导致上下文的context都取消了,所以WriteChangelog方法就一直执行不到。 这个点是我们在日常开发中想不到的,所以需要注意一下~。